]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/math/combinators/combinators-tests.factor
factor: rename [ ] [ ] unit-test -> { } [ ] unit-test using a refactoring tool!
[factor.git] / extra / math / combinators / combinators-tests.factor
index a8448d6d6b9d7fe44fc551637ce3d44057e77fe3..eb6ad7f21f1fab64014816b49c08c71066cb72d5 100644 (file)
@@ -3,10 +3,10 @@
 USING: kernel math math.combinators tools.test ;
 IN: math.combinators.tests
 
-[ 0 ] [ -3 [ drop 0 ] when-negative ] unit-test
-[ -2 ] [ -3 [ 1 + ] when-negative ] unit-test
-[ 2 ] [ 2 [ 0 ] when-negative ] unit-test
+{ 0 } [ -3 [ drop 0 ] when-negative ] unit-test
+{ -2 } [ -3 [ 1 + ] when-negative ] unit-test
+{ 2 } [ 2 [ 0 ] when-negative ] unit-test
 
-[ 0 ] [ 3 [ drop 0 ] when-positive ] unit-test
-[ 4 ] [ 3 [ 1 + ] when-positive ] unit-test
-[ -2 ] [ -2 [ 0 ] when-positive ] unit-test
+{ 0 } [ 3 [ drop 0 ] when-positive ] unit-test
+{ 4 } [ 3 [ 1 + ] when-positive ] unit-test
+{ -2 } [ -2 [ 0 ] when-positive ] unit-test