diff options
-rw-r--r-- | tests/testament/categories.nim | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/testament/categories.nim b/tests/testament/categories.nim index ac6b5b252..2f9198759 100644 --- a/tests/testament/categories.nim +++ b/tests/testament/categories.nim @@ -421,8 +421,9 @@ proc processSingleTest(r: var TResults, cat: Category, options, test: string) = proc processCategory(r: var TResults, cat: Category, options: string) = case cat.string.normalize of "rodfiles": - when false: compileRodFiles(r, cat, options) - runRodFiles(r, cat, options) + when false: + compileRodFiles(r, cat, options) + runRodFiles(r, cat, options) of "js": # XXX JS doesn't need to be special anymore jsTests(r, cat, options) |