diff options
author | narimiran <narimiran@disroot.org> | 2019-11-06 13:59:31 +0100 |
---|---|---|
committer | narimiran <narimiran@disroot.org> | 2019-11-06 14:35:45 +0100 |
commit | c6a451c5848fecc9e6b11a1cb1e33bf3c68b7571 (patch) | |
tree | 79ba29298561448d829556a034430ea24c830b42 /tests/ccgbugs | |
parent | cc3e9ca1641bf93fb51ff20bf546a34e7cf1862a (diff) | |
download | Nim-c6a451c5848fecc9e6b11a1cb1e33bf3c68b7571.tar.gz |
remove unused imports from tests
Diffstat (limited to 'tests/ccgbugs')
-rw-r--r-- | tests/ccgbugs/tmissingderef2.nim | 2 | ||||
-rw-r--r-- | tests/ccgbugs/tuple_canon.nim | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/tests/ccgbugs/tmissingderef2.nim b/tests/ccgbugs/tmissingderef2.nim index 59cd24dd1..23be61bcb 100644 --- a/tests/ccgbugs/tmissingderef2.nim +++ b/tests/ccgbugs/tmissingderef2.nim @@ -4,7 +4,7 @@ discard """ # bug #5079 -import tables, strutils +import tables type Test = ref object s: string diff --git a/tests/ccgbugs/tuple_canon.nim b/tests/ccgbugs/tuple_canon.nim index 671986054..aa9605d4b 100644 --- a/tests/ccgbugs/tuple_canon.nim +++ b/tests/ccgbugs/tuple_canon.nim @@ -12,8 +12,7 @@ foo = bar # No error if assigned directly # bug #2250 -import - math, strutils +import math type Meters = float |