]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/method-chains/method-chains-tests.factor
Revert "factor: rename [ ] [ ] unit-test -> { } [ ] unit-test using a refactoring...
[factor.git] / extra / method-chains / method-chains-tests.factor
index bfc4d6fd3df22e419ce1e48c0f1b8d08c755cdc0..322dafcc61772dabc2c5a5425bc5e212b9d9e8c9 100644 (file)
@@ -7,7 +7,7 @@ M: sequence testing nip reverse ;
 AFTER: string testing append ;
 BEFORE: array testing over prefix "a" set ;
 
-{ V{ 3 2 1 } } [ 3 V{ 1 2 3 } testing ] unit-test
-{ "heyyeh" } [ 4 "yeh" testing ] unit-test
-{ { 4 2 0 } } [ 5 { 0 2 4 } testing ] unit-test
-{ { 5 0 2 4 } } [ "a" get ] unit-test
+[ V{ 3 2 1 } ] [ 3 V{ 1 2 3 } testing ] unit-test
+[ "heyyeh" ] [ 4 "yeh" testing ] unit-test
+[ { 4 2 0 } ] [ 5 { 0 2 4 } testing ] unit-test
+[ { 5 0 2 4 } ] [ "a" get ] unit-test