]> gitweb.factorcode.org Git - factor.git/blobdiff - core/checksums/crc32/crc32-tests.factor
factor: Retrying on the unit tests. Also normalize some syntax with FUNCTION:.
[factor.git] / core / checksums / crc32 / crc32-tests.factor
index 15d83d1b02a385b6d63f1b1674fb65d0dd22e0fd..8922f5a2063c455a1f33294844debd1f86e5da8f 100644 (file)
@@ -1,5 +1,5 @@
 USING: checksums checksums.crc32 kernel math tools.test namespaces ;
 
-[ B{ 0 0 0 0 } ] [ "" crc32 checksum-bytes ] unit-test
+{ B{ 0 0 0 0 } } [ "" crc32 checksum-bytes ] unit-test
 
-[ B{ 0xcb 0xf4 0x39 0x26 } ] [ "123456789" crc32 checksum-bytes ] unit-test
+{ B{ 0xcb 0xf4 0x39 0x26 } } [ "123456789" crc32 checksum-bytes ] unit-test