diff options
author | ringabout <43030857+ringabout@users.noreply.github.com> | 2022-12-02 03:31:48 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-01 14:31:48 -0500 |
commit | 8266750497e6ba08c8e5f6ca9bf87f1d8557b0c1 (patch) | |
tree | 2c55fe9fc5cbff8c3c86045b0174df5bf08d1294 /tests | |
parent | a104aa4714ea599b3f17b381b78053306d3f0ae0 (diff) | |
download | Nim-8266750497e6ba08c8e5f6ca9bf87f1d8557b0c1.tar.gz |
[unittest] remove unnecessay export for testing (#20868)
Diffstat (limited to 'tests')
-rw-r--r-- | tests/stdlib/tunittest.nim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/stdlib/tunittest.nim b/tests/stdlib/tunittest.nim index 8aa7f9fad..606c9bc70 100644 --- a/tests/stdlib/tunittest.nim +++ b/tests/stdlib/tunittest.nim @@ -23,6 +23,7 @@ targets: "c js" """ import std/[unittest, sequtils, assertions] +from std/unittest {.all.} import matchFilter proc doThings(spuds: var int): int = spuds = 24 |