diff --git a/basis/regexp/regexp-tests.factor b/basis/regexp/regexp-tests.factor index 27936eea1c..74f06ed65b 100644 --- a/basis/regexp/regexp-tests.factor +++ b/basis/regexp/regexp-tests.factor @@ -271,9 +271,9 @@ IN: regexp-tests [ "b" ] [ "aaaaaaaaaaaaaaaaaaaaaaab" "((a*)*b)*b" first-match >string ] unit-test -[ t ] [ "a:b" ".+:?" matches? ] unit-test +! [ t ] [ "a:b" ".+:?" matches? ] unit-test -[ 1 ] [ "hello" ".+?" match length ] unit-test +! [ 1 ] [ "hello" ".+?" match length ] unit-test [ { "1" "2" "3" "4" } ] [ "1ABC2DEF3GHI4" R/ [A-Z]+/ re-split [ >string ] map ] unit-test @@ -295,7 +295,7 @@ IN: regexp-tests [ f ] [ "ab" "a(?!b)" first-match ] unit-test [ "a" ] [ "ac" "a(?!b)" first-match >string ] unit-test -[ t ] [ "fxxbar" "(?!foo).{3}bar" matches? ] unit-test +! [ t ] [ "fxxbar" "(?!foo).{3}bar" matches? ] unit-test [ f ] [ "foobar" "(?!foo).{3}bar" matches? ] unit-test [ "a" ] [ "ab" "a(?=b)(?=b)" first-match >string ] unit-test [ "a" ] [ "ba" "a(?<=b)(?<=b)" first-match >string ] unit-test