Rename func

This commit is contained in:
Vivianne 2024-03-03 20:33:12 -05:00
parent e53876be52
commit ded13ff781
1 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@
(test-begin "test-eastasian-locale")
(define (test-east expected charset)
(define (test-eastasian-locale expected charset)
(test-equal
(format #f "check ~a" charset)
expected
@ -21,6 +21,6 @@
(#t "ja_JP.CP932")
(#f "en_US.UTF-8")))
(for-each (λ (p) (apply test-east p)) data)
(for-each (λ (p) (apply test-eastasian-locale p)) data)
(test-end "test-eastasian-locale")