diff options
author | Bung <crc32@qq.com> | 2022-10-02 12:42:41 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-02 06:42:41 +0200 |
commit | 0769b160c5e1e3f17a87c4a50c0c8d4ba076858f (patch) | |
tree | 5db5e162017cd94fc258fbedc30311abf9a5c5ec /tests/generics | |
parent | 1737bb9f9e3fffeceaac480f359b4d90ba07a3e1 (diff) | |
download | Nim-0769b160c5e1e3f17a87c4a50c0c8d4ba076858f.tar.gz |
less test time costs (#20479)
Diffstat (limited to 'tests/generics')
-rw-r--r-- | tests/generics/tgeneric3.nim | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/generics/tgeneric3.nim b/tests/generics/tgeneric3.nim index 07ab822ae..29a73afc6 100644 --- a/tests/generics/tgeneric3.nim +++ b/tests/generics/tgeneric3.nim @@ -1,9 +1,9 @@ discard """ output: ''' 312 -1000000 -1000000 -500000 +1000 +1000 +500 0 ''' """ @@ -445,7 +445,7 @@ proc test() = var it1 = internalFind(root, 312) echo it1.value - for i in 1..1_000_000: + for i in 1..1_000: root = internalPut(root, i, i, oldvalue) var cnt = 0 |