]> gitweb.factorcode.org Git - factor.git/commitdiff
parser: fix tests for hash-set change.
authorJohn Benediktsson <mrjbq7@gmail.com>
Fri, 8 Mar 2013 22:57:21 +0000 (14:57 -0800)
committerJohn Benediktsson <mrjbq7@gmail.com>
Fri, 8 Mar 2013 22:57:21 +0000 (14:57 -0800)
core/parser/parser-tests.factor

index a399948632fba8c74a3160d8a19ce4c0244c191d..855dfebe0814a6f9785886dad4238a67bd4db5c1 100644 (file)
@@ -4,7 +4,7 @@ sequences strings io.files io.pathnames definitions
 continuations sorting classes.tuple compiler.units debugger
 vocabs vocabs.loader accessors eval combinators lexer
 vocabs.parser words.symbol multiline source-files.errors
-tools.crossref grouping ;
+tools.crossref grouping sets ;
 IN: parser.tests
 
 [ 1 [ 2 [ 3 ] 4 ] 5 ]
@@ -621,9 +621,9 @@ EXCLUDE: qualified.tests.bar => x ;
 
 [
     [ "vocabs.loader.test.l" use-vocab ] must-fail
-    [ f ] [ "vocabs.loader.test.l" manifest get search-vocab-names>> key? ] unit-test
+    [ f ] [ "vocabs.loader.test.l" manifest get search-vocab-names>> in? ] unit-test
     [ ] [ "vocabs.loader.test.l" unuse-vocab ] unit-test
-    [ f ] [ "vocabs.loader.test.l" manifest get search-vocab-names>> key? ] unit-test    
+    [ f ] [ "vocabs.loader.test.l" manifest get search-vocab-names>> in? ] unit-test    
 ] with-file-vocabs
 
 ! Test cases for #183