diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/collections/ttables.nim | 7 | ||||
-rw-r--r-- | tests/generics/tgeneric3.nim | 8 | ||||
-rw-r--r-- | tests/objects/tobject.nim | 5 |
3 files changed, 8 insertions, 12 deletions
diff --git a/tests/collections/ttables.nim b/tests/collections/ttables.nim index 638f4241b..95f9418a0 100644 --- a/tests/collections/ttables.nim +++ b/tests/collections/ttables.nim @@ -177,16 +177,14 @@ block tableconstr: block ttables2: proc TestHashIntInt() = var tab = initTable[int,int]() - let n = 100_000 + let n = 10 for i in 1..n: tab[i] = i for i in 1..n: var x = tab[i] if x != i : echo "not found ", i - proc run1() = - for i in 1 .. 50: - TestHashIntInt() + TestHashIntInt() # bug #2107 @@ -198,7 +196,6 @@ block ttables2: delTab[5] = 5 - run1() echo "2" block tablesref: 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 diff --git a/tests/objects/tobject.nim b/tests/objects/tobject.nim index 543a86376..207cda0bc 100644 --- a/tests/objects/tobject.nim +++ b/tests/objects/tobject.nim @@ -1,4 +1,3 @@ -import unittest type Obj = object foo: int @@ -10,9 +9,9 @@ block: # object basic methods block: # it should convert an object to a string var obj = makeObj(1) # Should be "obj: (foo: 1)" or similar. - check($obj == "(foo: 1)") + doAssert($obj == "(foo: 1)") block: # it should test equality based on fields - check(makeObj(1) == makeObj(1)) + doAssert(makeObj(1) == makeObj(1)) # bug #10203 |