summary refs log tree commit diff stats
path: root/tests/stdlib
diff options
context:
space:
mode:
authorTimothee Cour <timothee.cour2@gmail.com>2021-04-16 11:26:05 -0700
committerGitHub <noreply@github.com>2021-04-16 11:26:05 -0700
commit201ac2b9c93a8c3677b4910a1986c91741aee0e3 (patch)
tree06ab8436491d7e1e7ab8930f084769d5653b0ad6 /tests/stdlib
parent957478ce264d0496f9a0c33de4af77ad0846b42d (diff)
downloadNim-201ac2b9c93a8c3677b4910a1986c91741aee0e3.tar.gz
fix nim CI following #17455 (same postmortem as #17721) (#17740)
Diffstat (limited to 'tests/stdlib')
-rw-r--r--tests/stdlib/trepr.nim8
1 files changed, 2 insertions, 6 deletions
diff --git a/tests/stdlib/trepr.nim b/tests/stdlib/trepr.nim
index 86f3dee30..356764903 100644
--- a/tests/stdlib/trepr.nim
+++ b/tests/stdlib/trepr.nim
@@ -193,10 +193,8 @@ proc `foo bar baz`(): int =
     let a = deb:
       proc `foo=`() = discard
     doAssert a == """
-
 proc `foo=`() =
-  discard
-"""
+  discard"""
 
   block: # bug #14850
     block:
@@ -221,7 +219,6 @@ proc `foo=`() =
             4)
 
       doAssert a == """
-
 template bar(): untyped =
   foo1:
     discard
@@ -244,8 +241,7 @@ template bar(): untyped =
     4
   a.add(foo7 do:
     echo "baz"
-    4)
-"""
+    4)"""
 
 static: main()
 main()