diff options
author | cheatfate <ka@hardcore.kiev.ua> | 2016-09-04 01:48:13 +0300 |
---|---|---|
committer | cheatfate <ka@hardcore.kiev.ua> | 2016-09-04 01:48:13 +0300 |
commit | 5a1db8af54a227cac8e974734e67f1b2e29821ad (patch) | |
tree | aece51a7e2e80bc6e42f57b772584e2f5dc7010b /tests | |
parent | 015e22c8c0adc181992eede09acd8df24b488180 (diff) | |
download | Nim-5a1db8af54a227cac8e974734e67f1b2e29821ad.tar.gz |
Fix define.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/testament/categories.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/testament/categories.nim b/tests/testament/categories.nim index f250d8a45..13f732e3b 100644 --- a/tests/testament/categories.nim +++ b/tests/testament/categories.nim @@ -206,7 +206,7 @@ proc ioTests(r: var TResults, cat: Category, options: string) = proc asyncTests(r: var TResults, cat: Category, options: string) = template test(filename: untyped) = testSpec r, makeTest(filename, options, cat) - testSpec r, makeTest(filename, options & " -d:upcoming_async", cat) + testSpec r, makeTest(filename, options & " -d:upcoming", cat) for t in os.walkFiles("tests/async/t*.nim"): test(t) |