]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/sorting/bubble/bubble-tests.factor
Rename and add sorting words
[factor.git] / extra / sorting / bubble / bubble-tests.factor
index 0dbe1263e5d97ef0bce6f2cfb82a303bcd2a6ac3..d14521ccd44c8e3e69cc53e3070dcdc8c86a483e 100644 (file)
@@ -1,5 +1,5 @@
 USING: kernel sorting.bubble tools.test ;
 
-{ { } } [ { } dup natural-bubble-sort! ] unit-test
-{ { 1 } } [ { 1 } dup natural-bubble-sort! ] unit-test
-{ { 1 2 3 4 5 } } [ { 1 4 2 5 3 } dup natural-bubble-sort! ] unit-test
+{ { } } [ { } dup bubble-sort! ] unit-test
+{ { 1 } } [ { 1 } dup bubble-sort! ] unit-test
+{ { 1 2 3 4 5 } } [ { 1 4 2 5 3 } dup bubble-sort! ] unit-test