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 63fb66f commit 572f69b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/java/software/amazon/awssdk/crt/test/CrcTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ public void testCrc64NVMEZeroes() {
byte[] zeroes = new byte[32];
software.amazon.awssdk.crt.checksums.CRC64NVME crc64 = new software.amazon.awssdk.crt.checksums.CRC64NVME();
crc64.update(zeroes);
long expected = 0xCF3473434D4ECF3B;
long expected = 0xCF3473434D4ECF3BL;
assertEquals(expected, crc64.getValue());
}
}

0 comments on commit 572f69b

Please sign in to comment.