Skip to content

Commit 22c3e7d

Browse files
committed
Updated offset check in good ciphertext test
1 parent d89ff00 commit 22c3e7d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/com/amazonaws/encryptionsdk/ParsedCiphertextTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public void goodParsedCiphertext() {
5757
final ParsedCiphertext pCt = new ParsedCiphertext(cipherText);
5858

5959
assertNotNull(pCt.getCiphertext());
60-
assert pCt.getOffset() > 0;
60+
assertTrue(pCt.getOffset() > 0);
6161
}
6262

6363
@Test(expected = BadCiphertextException.class)

0 commit comments

Comments
 (0)