We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 570cd62 commit 02324ebCopy full SHA for 02324eb
src/test/java/software/amazon/awssdk/crt/test/XXHashTest.java
@@ -25,8 +25,8 @@ public void testXXHash64Piping() {
25
26
byte[] input2 = "llo world".getBytes();
27
try(XXHash hash = XXHash.newXXHash64()) {
28
- hash.update("H");
29
- hash.update("e");
+ hash.update((int)"H");
+ hash.update((int)"e");
30
hash.update(input2);
31
byte[] out2 = hash.digest();
32
0 commit comments