Skip to content

Commit 02324eb

Browse files
cast
1 parent 570cd62 commit 02324eb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/java/software/amazon/awssdk/crt/test/XXHashTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ public void testXXHash64Piping() {
2525

2626
byte[] input2 = "llo world".getBytes();
2727
try(XXHash hash = XXHash.newXXHash64()) {
28-
hash.update("H");
29-
hash.update("e");
28+
hash.update((int)"H");
29+
hash.update((int)"e");
3030
hash.update(input2);
3131
byte[] out2 = hash.digest();
3232

0 commit comments

Comments
 (0)