Skip to content

Commit

Permalink
test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
DmitriyMusatkin committed Sep 23, 2024
1 parent a5b2cf1 commit 63fb66f
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 @@ -172,8 +172,8 @@ public void testCrc32CLargeBuffer() {
public void testCrc64NVMEZeroes() {
byte[] zeroes = new byte[32];
software.amazon.awssdk.crt.checksums.CRC64NVME crc64 = new software.amazon.awssdk.crt.checksums.CRC64NVME();
crcc.update(zeroes);
crc64.update(zeroes);
long expected = 0xCF3473434D4ECF3B;
assertEquals(expected, (int) crcc.getValue());
assertEquals(expected, crc64.getValue());
}
}

0 comments on commit 63fb66f

Please sign in to comment.