Skip to content

Commit

Permalink
fix value
Browse files Browse the repository at this point in the history
  • Loading branch information
DmitriyMusatkin committed Sep 23, 2024
1 parent f287474 commit 26b66e8
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 = 0x46DD794E;
long expected = 0xB9D9D4A8492CBD7F;
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 = 0x46DD794E;
long expected = 0xB9D9D4A8492CBD7F;
assertEquals(expected, crc64.getValue());
}
}

0 comments on commit 26b66e8

Please sign in to comment.