aboutsummaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
authorMichael Camilleri <mike@inqk.net>2021-02-28 15:11:49 +0900
committerMichael Camilleri <mike@inqk.net>2021-02-28 15:11:49 +0900
commit7e55e97378a241607a74bfbdd24c430a5d264183 (patch)
tree1fa4f9befad2ffedb01a2e6059224aed5ba2291c /test
parentMerge pull request #33 from pyrmont/feature.netrepl-parser (diff)
Fix inadventure capture of test output
Diffstat (limited to 'test')
-rw-r--r--test/suite8.janet6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/suite8.janet b/test/suite8.janet
index 9ccb23a..65f6ff9 100644
--- a/test/suite8.janet
+++ b/test/suite8.janet
@@ -9,9 +9,9 @@
[template args expected]
(def buf @"")
(with-dyns [:out buf]
- (template args)
- (def sbuf (string/trim (string buf)))
- (test/assert (= sbuf expected) (string "Render of " template))))
+ (template args))
+ (def sbuf (string/trim (string buf)))
+ (test/assert (= sbuf expected) (string "Render of " template)))
(import ./templates/hi :as hi)
(import ./templates/hop :as hop)