]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/alien/complex/complex-tests.factor
Revert "factor: rename [ ] [ ] unit-test -> { } [ ] unit-test using a refactoring...
[factor.git] / basis / alien / complex / complex-tests.factor
index aa549659d07432d871a616691ba6d857ba3bba8d..63d73ef0291907919233aa5376c664dce4b0b4b3 100644 (file)
@@ -10,12 +10,12 @@ STRUCT: complex-holder
 : <complex-holder> ( z -- alien )
     complex-holder <struct-boa> ;
 
-{ } [
+[ ] [
     C{ 1.0 2.0 } <complex-holder> "h" set
 ] unit-test
 
-{ C{ 1.0 2.0 } } [ "h" get z>> ] unit-test
+[ C{ 1.0 2.0 } ] [ "h" get z>> ] unit-test
 
-{ complex } [ complex-float c-type-boxed-class ] unit-test
+[ complex ] [ complex-float c-type-boxed-class ] unit-test
 
-{ complex } [ complex-double c-type-boxed-class ] unit-test
+[ complex ] [ complex-double c-type-boxed-class ] unit-test