use newer SDK

This commit is contained in:
Michele Balistreri 2019-08-14 10:58:40 +03:00
parent 576cabb04b
commit 08be5158da
No known key found for this signature in database
GPG Key ID: E9567DA33A4F791A
3 changed files with 4 additions and 4 deletions

View File

@ -57,7 +57,7 @@ dependencies {
testCompile(files("../jcardsim/jcardsim-3.0.5-SNAPSHOT.jar"))
testCompile('org.web3j:core:2.3.1')
testCompile('org.bitcoinj:bitcoinj-core:0.14.5')
testCompile('com.github.status-im.status-keycard-java:desktop:49ad217')
testCompile('com.github.status-im.status-keycard-java:desktop:239505b')
testCompile('org.bouncycastle:bcprov-jdk15on:1.60')
testCompile("org.junit.jupiter:junit-jupiter-api:5.1.1")
testRuntime("org.junit.jupiter:junit-jupiter-engine:5.1.1")

View File

@ -4,5 +4,5 @@ repositories {
}
dependencies {
compile 'com.github.status-im.status-keycard-java:desktop:49ad217'
compile 'com.github.status-im.status-keycard-java:desktop:239505b'
}

View File

@ -242,7 +242,7 @@ public class KeycardTest {
assertEquals(0x6A86, response.getSw());
// Wrong data
response = cmdSet.openSecureChannel(secureChannel.getPairingIndex(), new byte[65]);
response = cmdSet.openSecureChannel(secureChannel.getPairingIndex(), new byte[66]);
assertEquals(0x6A80, response.getSw());
// Good case
@ -1278,7 +1278,7 @@ public class KeycardTest {
@Test
@DisplayName("STORE/GET DATA")
void storeGetData() throws Exception {
void storeGetDataTest() throws Exception {
APDUResponse response;
if (cmdSet.getApplicationInfo().hasSecureChannelCapability()) {