diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2021-04-16 11:26:05 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-16 11:26:05 -0700 |
commit | 201ac2b9c93a8c3677b4910a1986c91741aee0e3 (patch) | |
tree | 06ab8436491d7e1e7ab8930f084769d5653b0ad6 /tests/stdlib | |
parent | 957478ce264d0496f9a0c33de4af77ad0846b42d (diff) | |
download | Nim-201ac2b9c93a8c3677b4910a1986c91741aee0e3.tar.gz |
fix nim CI following #17455 (same postmortem as #17721) (#17740)
Diffstat (limited to 'tests/stdlib')
-rw-r--r-- | tests/stdlib/trepr.nim | 8 |
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() |