]> gitweb.factorcode.org Git - factor.git/blobdiff - core/checksums/crc32/crc32-tests.factor
use radix literals
[factor.git] / core / checksums / crc32 / crc32-tests.factor
index 6fe4b995eec251d83317091d415edceb66c511db..a725e0479a62d3bf2c1fe56a5d3eeaf58a1ba64c 100644 (file)
@@ -2,5 +2,5 @@ USING: checksums checksums.crc32 kernel math tools.test namespaces ;
 
 [ B{ 0 0 0 0 } ] [ "" crc32 checksum-bytes ] unit-test
 
-[ B{ HEX: cb HEX: f4 HEX: 39 HEX: 26 } ] [ "123456789" crc32 checksum-bytes ] unit-test
+[ B{ 0xcb 0xf4 0x39 0x26 } ] [ "123456789" crc32 checksum-bytes ] unit-test