diff --git a/contrib/10.regexp/t/test.scm b/contrib/10.regexp/t/test.scm index 3c90493f..45da3bcf 100644 --- a/contrib/10.regexp/t/test.scm +++ b/contrib/10.regexp/t/test.scm @@ -8,5 +8,5 @@ (test '("a" "b" "c" "d") (regexp-split (regexp ",") "a,b,c,d")) (test '("a" "b" "c" "d") (regexp-split (regexp "\\.+") "a.b....c.....d")) (test "a b c d" (regexp-replace (regexp ",") "a,b,c,d" " ")) -(test "newline tab space " (regexp-replace (regexp "\\s") "newline +(test "newline tab space " (regexp-replace (regexp "[\n\t ]") "newline tab space " " "))