]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/calendar/format/macros/macros-tests.factor
Revert "factor: rename [ ] [ ] unit-test -> { } [ ] unit-test using a refactoring...
[factor.git] / basis / calendar / format / macros / macros-tests.factor
index 5c95129cfcf5b89428ecc906638ca979346c177c..4ba2872b43fb9034f62a902bf7660e33a47b489c 100644 (file)
@@ -1,9 +1,9 @@
 USING: tools.test kernel accessors ;
 IN: calendar.format.macros
 
-{ 2 } [ { [ 2 ] } attempt-all-quots ] unit-test
+[ 2 ] [ { [ 2 ] } attempt-all-quots ] unit-test
 
-{ 2 } [ { [ 1 throw ] [ 2 ] } attempt-all-quots ] unit-test
+[ 2 ] [ { [ 1 throw ] [ 2 ] } attempt-all-quots ] unit-test
 
 [ { [ 1 throw ] } attempt-all-quots ] [ 1 = ] must-fail-with
 
@@ -12,4 +12,4 @@ IN: calendar.format.macros
 
 \ compiled-test-1 def>> must-infer
 
-{ 2 } [ compiled-test-1 ] unit-test
+[ 2 ] [ compiled-test-1 ] unit-test