summaryrefslogtreecommitdiffstats
path: root/tests/011
diff options
context:
space:
mode:
Diffstat (limited to 'tests/011')
-rw-r--r--tests/011/special-1.expected2
-rw-r--r--tests/011/special-1.txr3
2 files changed, 3 insertions, 2 deletions
diff --git a/tests/011/special-1.expected b/tests/011/special-1.expected
index ce013625..af5626b4 100644
--- a/tests/011/special-1.expected
+++ b/tests/011/special-1.expected
@@ -1 +1 @@
-hello
+Hello, world!
diff --git a/tests/011/special-1.txr b/tests/011/special-1.txr
index 7e51c483..23c15b48 100644
--- a/tests/011/special-1.txr
+++ b/tests/011/special-1.txr
@@ -4,5 +4,6 @@
(progn ,*forms (get-string-from-stream ,var))))
(let ((x (with-output-to-string (*stdout*)
- (format t "hello"))))
+ (format t "world!"))))
+ (format *stdout* "Hello, ")
(put-line x)))