]> gitweb.factorcode.org Git - factor.git/blobdiff - core/hashtables/hashtables-tests.factor
use reject instead of [ ... not ] filter.
[factor.git] / core / hashtables / hashtables-tests.factor
index f9d5f7c17420e7a32bfd72a67155ef87866e9db3..5a6ba05e9e52708a8d4a03a062785962bccef30f 100644 (file)
@@ -8,7 +8,7 @@ IN: hashtables.tests
 [ ] [ 1000 iota [ dup sq ] H{ } map>assoc "testhash" set ] unit-test
 
 [ V{ } ]
-[ 1000 iota [ dup sq swap "testhash" get at = not ] filter ]
+[ 1000 iota [ dup sq swap "testhash" get at = ] reject ]
 unit-test
 
 [ t ]