Skip to content

Commit 1d9ac7e

Browse files
committed
Fix up write-string test.
1 parent 6247e3c commit 1d9ac7e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

langs/outlaw/test/test-runner.rkt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -726,7 +726,7 @@
726726
(check-equal? (run "" '(write-char #\newline))
727727
(cons (void) "\n"))
728728
(check-equal? (run "" '(write-string "hello world"))
729-
(cons (void) "hello world"))
729+
(cons 11 "hello world"))
730730
(check-equal? (run "" '(displayln "hello world"))
731731
(cons (void) "hello world\n"))
732732
)

0 commit comments

Comments
 (0)