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 /lib/pure/unittest.nim | |
parent | a104aa4714ea599b3f17b381b78053306d3f0ae0 (diff) | |
download | Nim-8266750497e6ba08c8e5f6ca9bf87f1d8557b0c1.tar.gz |
[unittest] remove unnecessay export for testing (#20868)
Diffstat (limited to 'lib/pure/unittest.nim')
-rw-r--r-- | lib/pure/unittest.nim | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/pure/unittest.nim b/lib/pure/unittest.nim index 593bc1ca4..c87fe38f1 100644 --- a/lib/pure/unittest.nim +++ b/lib/pure/unittest.nim @@ -433,8 +433,6 @@ proc matchFilter(suiteName, testName, filter: string): bool = return glob(suiteName, suiteAndTestFilters[0]) and glob(testName, suiteAndTestFilters[1]) -when defined(testing): export matchFilter - proc shouldRun(currentSuiteName, testName: string): bool = ## Check if a test should be run by matching suiteName and testName against ## test filters. |