Skip to content

Commit b328951

Browse files
committed
Omit exotic Unicode digits in test case
1 parent 449484e commit b328951

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

14.scm

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@
3737
(test-assert
3838
(char-set= (string->char-set "eiaou2468013579999")
3939
(char-set-unfold null? car cdr '(#\a #\e #\i #\o #\u #\u #\u)
40-
char-set:digit)))
40+
(char-set-intersection
41+
char-set:digit char-set:ascii))))
4142

4243
(test-assert
4344
(char-set= (string->char-set "eiaou246801357999")

0 commit comments

Comments
 (0)