diff options
Diffstat (limited to 'tests/vm/tvmops.nim')
-rw-r--r-- | tests/vm/tvmops.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/vm/tvmops.nim b/tests/vm/tvmops.nim index 632dcbee7..3d8d5a9ac 100644 --- a/tests/vm/tvmops.nim +++ b/tests/vm/tvmops.nim @@ -16,7 +16,7 @@ static: let ret = gorgeEx(nim & " --version") doAssert ret.exitCode == 0 doAssert ret.output.contains "Nim Compiler" - let ret2 = gorgeEx(nim & " --unexistant") + let ret2 = gorgeEx(nim & " --nonxistent") doAssert ret2.exitCode != 0 let output3 = gorge(nim & " --version") doAssert output3.contains "Nim Compiler" @@ -43,4 +43,4 @@ block: # Check against bugs like #9176 doAssert getCurrentCompilerExe() == getCurrentCompilerExe().static if false: #pending #9176 - doAssert gorgeEx("unexistant") == gorgeEx("unexistant").static + doAssert gorgeEx("nonxistent") == gorgeEx("nonxistent").static |