]> gitweb.factorcode.org Git - factor.git/commitdiff
regexp: fix test
authorSlava Pestov <slava@slava-pestovs-macbook-pro.local>
Sat, 24 Jul 2010 03:40:44 +0000 (20:40 -0700)
committerSlava Pestov <slava@slava-pestovs-macbook-pro.local>
Sat, 24 Jul 2010 03:40:44 +0000 (20:40 -0700)
basis/regexp/regexp-tests.factor

index 609636c1d13c348bf6b17e6383797a8d97f71392..d53f50c6d113f320cd6ac69c153e1e6367fb5966 100644 (file)
@@ -291,7 +291,7 @@ unit-test
 
 [ { "h" "llo" } ] [ "hello" R/ e+/ re-split [ >string ] map ] unit-test
 
-[ { "" "h" "l" "l" "o" "" } ] [ "hello" R/ e*/ re-split [ >string ] map ] unit-test
+[ { "" "h" "" "l" "l" "o" "" } ] [ "hello" R/ e*/ re-split [ >string ] map ] unit-test
 
 [ { { 0 5 "hellohello" } { 5 10 "hellohello" } } ]
 [ "hellohello" R/ hello/ [ 3array ] map-matches ]