mirror of
https://github.com/nim-lang/Nim.git
synced 2026-04-18 13:30:33 +00:00
typo: nonexistant => nonexistent (#17918)
* typo: nonexistant => nonexistent * fix test (ordering differs because of https://github.com/nim-lang/Nim/issues/17910)
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user