Skip to content

Commit

Permalink
ahh java
Browse files Browse the repository at this point in the history
  • Loading branch information
DmitriyMusatkin committed Sep 23, 2024
1 parent 26b66e8 commit 52f175e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/java/software/amazon/awssdk/crt/test/CrcTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ public void testCrc64NVMEValues() {
}
software.amazon.awssdk.crt.checksums.CRC64NVME crc64 = new software.amazon.awssdk.crt.checksums.CRC64NVME();
crc64.update(values);
long expected = 0xB9D9D4A8492CBD7F;
long expected = 0xB9D9D4A8492CBD7FL;
assertEquals(expected, crc64.getValue());
}

Expand All @@ -210,7 +210,7 @@ public void testCrc64NVMEValuesIterated() {
for (int i = 0; i < 32; i++) {
crc64.update(values, i, 1);
}
long expected = 0xB9D9D4A8492CBD7F;
long expected = 0xB9D9D4A8492CBD7FL;
assertEquals(expected, crc64.getValue());
}
}

0 comments on commit 52f175e

Please sign in to comment.