diff options
author | Araq <rumpf_a@web.de> | 2019-06-03 09:35:04 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2019-06-03 09:35:04 +0200 |
commit | 64518380a56b1a479f207e4e0c793c0c0539fde9 (patch) | |
tree | 4811464240826c49b99d8e106a03e2efbd480a88 /lib/pure | |
parent | a68fe3d08297021afadc684285db3512ff928100 (diff) | |
download | Nim-64518380a56b1a479f207e4e0c793c0c0539fde9.tar.gz |
undeprecate system.programResult until we have a good solution at hand
Diffstat (limited to 'lib/pure')
-rw-r--r-- | lib/pure/unittest.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/unittest.nim b/lib/pure/unittest.nim index 60b20c5b8..a6104428d 100644 --- a/lib/pure/unittest.nim +++ b/lib/pure/unittest.nim @@ -551,7 +551,7 @@ template fail* = else: formatter.failureOccurred(checkpoints, "") - when not defined(ECMAScript): + when declared(programResult): if abortOnError: quit(programResult) checkpoints = @[] |