summary refs log tree commit diff stats
path: root/tests/importalls
diff options
context:
space:
mode:
authorTimothee Cour <timothee.cour2@gmail.com>2021-05-01 15:26:41 -0700
committerGitHub <noreply@github.com>2021-05-02 00:26:41 +0200
commit78e2d299dffc9508430778fcff1dcaee2c8d39fd (patch)
tree52db85ea15ac9d502c4fd601afcec5b9183ea402 /tests/importalls
parent13b57524d35a18df57bec2a7d6a2faa7ce712e9f (diff)
downloadNim-78e2d299dffc9508430778fcff1dcaee2c8d39fd.tar.gz
typo: nonexistant => nonexistent (#17918)
* typo: nonexistant => nonexistent

* fix test (ordering differs because of https://github.com/nim-lang/Nim/issues/17910)
Diffstat (limited to 'tests/importalls')
-rw-r--r--tests/importalls/mt6.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/importalls/mt6.nim b/tests/importalls/mt6.nim
index c6d8b2193..ac6f542b6 100644
--- a/tests/importalls/mt6.nim
+++ b/tests/importalls/mt6.nim
@@ -6,7 +6,7 @@ doAssert declared(m2.foo0) # public: works fine
 
 doAssert m2.foo1 == 2
 doAssert declared(m2.foo1)
-doAssert not declared(m2.nonexistant)
+doAssert not declared(m2.nonexistent)
 
 # also tests the quoted `""` import
 import "."/"m1" {.all.} as m1b