]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/compiler/tree/propagation/copy/copy-tests.factor
Revert "factor: rename [ ] [ ] unit-test -> { } [ ] unit-test using a refactoring...
[factor.git] / basis / compiler / tree / propagation / copy / copy-tests.factor
index d9d28fddabd6f951d83d6a4805fbe2b8d128c856..b546e56e4ba2462746d1b7b694f9589f0563b6f7 100644 (file)
@@ -4,22 +4,22 @@ IN: compiler.tree.propagation.copy.tests
 
 H{ } clone copies set
 
-{ } [ 0 introduce-value ] unit-test
-{ } [ 1 introduce-value ] unit-test
-{ } [ 1 2 is-copy-of ] unit-test
-{ } [ 2 3 is-copy-of ] unit-test
-{ } [ 2 4 is-copy-of ] unit-test
-{ } [ 4 5 is-copy-of ] unit-test
-{ } [ 0 6 is-copy-of ] unit-test
+[ ] [ 0 introduce-value ] unit-test
+[ ] [ 1 introduce-value ] unit-test
+[ ] [ 1 2 is-copy-of ] unit-test
+[ ] [ 2 3 is-copy-of ] unit-test
+[ ] [ 2 4 is-copy-of ] unit-test
+[ ] [ 4 5 is-copy-of ] unit-test
+[ ] [ 0 6 is-copy-of ] unit-test
 
-{ 0 } [ 0 resolve-copy ] unit-test
-{ 1 } [ 5 resolve-copy ] unit-test
+[ 0 ] [ 0 resolve-copy ] unit-test
+[ 1 ] [ 5 resolve-copy ] unit-test
 
 ! Make sure that we did path compression
-{ 1 } [ 5 copies get at ] unit-test
+[ 1 ] [ 5 copies get at ] unit-test
 
-{ 1 } [ 1 resolve-copy ] unit-test
-{ 1 } [ 2 resolve-copy ] unit-test
-{ 1 } [ 3 resolve-copy ] unit-test
-{ 1 } [ 4 resolve-copy ] unit-test
-{ 0 } [ 6 resolve-copy ] unit-test
+[ 1 ] [ 1 resolve-copy ] unit-test
+[ 1 ] [ 2 resolve-copy ] unit-test
+[ 1 ] [ 3 resolve-copy ] unit-test
+[ 1 ] [ 4 resolve-copy ] unit-test
+[ 0 ] [ 6 resolve-copy ] unit-test