diff options
author | Sergey Avseyev <sergey.avseyev@gmail.com> | 2015-07-23 17:00:04 +0300 |
---|---|---|
committer | Sergey Avseyev <sergey.avseyev@gmail.com> | 2015-07-23 17:00:04 +0300 |
commit | 70f14aa578f7d4aee265a30c785c946266860445 (patch) | |
tree | 37a9440f7c32c81d6e2bd2f6074eda59d28673d0 /lib | |
parent | 46f59a7c598013c28557e239aab1b6e5b187af88 (diff) | |
download | Nim-70f14aa578f7d4aee265a30c785c946266860445.tar.gz |
Remove access modifiers from inner templates
Fixes options.nim tests
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pure/unittest.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/pure/unittest.nim b/lib/pure/unittest.nim index 407db0a51..de52cbbd1 100644 --- a/lib/pure/unittest.nim +++ b/lib/pure/unittest.nim @@ -63,10 +63,10 @@ proc shouldRun(testName: string): bool = template suite*(name: expr, body: stmt): stmt {.immediate, dirty.} = block: - template setup*(setupBody: stmt): stmt {.immediate, dirty.} = + template setup(setupBody: stmt): stmt {.immediate, dirty.} = template testSetupIMPL: stmt {.immediate, dirty.} = setupBody - template teardown*(teardownBody: stmt): stmt {.immediate, dirty.} = + template teardown(teardownBody: stmt): stmt {.immediate, dirty.} = template testTeardownIMPL: stmt {.immediate, dirty.} = teardownBody body |