fix delete test

This commit is contained in:
Andrea Franz 2018-09-26 15:56:32 +02:00
parent 97773b6c37
commit c7fc137724
No known key found for this signature in database
GPG Key ID: 4F0D2F2D9DE7F29D
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ public class DeleteTest {
public void getCommand() throws IOException {
byte[] aid = HexUtils.hexStringToByteArray("53746174757357616C6C6574");
Delete delete = new Delete(aid);
String expected = "80E400800E4F0C53746174757357616C6C6574";
String expected = "80E400000E4F0C53746174757357616C6C6574";
byte[] apdu = delete.getCommand().serialize();
assertEquals(expected, HexUtils.byteArrayToHexString(apdu));
}