diff options
Diffstat (limited to 'testament/categories.nim')
-rw-r--r-- | testament/categories.nim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/testament/categories.nim b/testament/categories.nim index b641430a1..38f61ce33 100644 --- a/testament/categories.nim +++ b/testament/categories.nim @@ -476,7 +476,8 @@ proc processSingleTest(r: var TResults, cat: Category, options, test: string) = let test = "tests" & DirSep &.? cat.string / test let target = if cat.string.normalize == "js": targetJS else: targetC - if existsFile(test): testSpec r, makeTest(test, options, cat), {target} + if existsFile(test): + testSpec r, makeTest(test, options, cat), {target} else: echo "[Warning] - ", test, " test does not exist" proc processCategory(r: var TResults, cat: Category, options: string) = |