]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/quoting/quoting-tests.factor
Revert "factor: rename [ ] [ ] unit-test -> { } [ ] unit-test using a refactoring...
[factor.git] / basis / quoting / quoting-tests.factor
index d0db3bb036647157101fca9f8e46a6e85a836d44..f024d9c4a7ce9d6f433d3a7c9343d40918d7ed48 100644 (file)
@@ -3,9 +3,9 @@
 USING: tools.test quoting ;
 IN: quoting.tests
 
-{ f } [ "" quoted? ] unit-test
-{ t } [ "''" quoted? ] unit-test
-{ t } [ "\"\"" quoted? ] unit-test
-{ t } [ "\"Circus Maximus\"" quoted? ] unit-test
-{ t } [ "'Circus Maximus'" quoted? ] unit-test
-{ f } [ "Circus Maximus" quoted? ] unit-test
+[ f ] [ "" quoted? ] unit-test
+[ t ] [ "''" quoted? ] unit-test
+[ t ] [ "\"\"" quoted? ] unit-test
+[ t ] [ "\"Circus Maximus\"" quoted? ] unit-test
+[ t ] [ "'Circus Maximus'" quoted? ] unit-test
+[ f ] [ "Circus Maximus" quoted? ] unit-test