diff options
author | Araq <rumpf_a@web.de> | 2018-11-16 19:54:49 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2018-11-16 19:54:49 +0100 |
commit | 6279b0587a9551d8c205e682d28a731f2986c456 (patch) | |
tree | 436169010f96ee20521b1bf64fc2cf4215674976 /tests/sets | |
parent | 3f6168b3372013c0d4b938e6a83849199d9756c9 (diff) | |
download | Nim-6279b0587a9551d8c205e682d28a731f2986c456.tar.gz |
make tests green again
Diffstat (limited to 'tests/sets')
-rw-r--r-- | tests/sets/tsets_various.nim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/sets/tsets_various.nim b/tests/sets/tsets_various.nim index 7cb9a6eec..8a63763b4 100644 --- a/tests/sets/tsets_various.nim +++ b/tests/sets/tsets_various.nim @@ -102,9 +102,9 @@ block tsets2: block tsets3: let - s1: TSet[int] = toSet([1, 2, 4, 8, 16]) - s2: TSet[int] = toSet([1, 2, 3, 5, 8]) - s3: TSet[int] = toSet([3, 5, 7]) + s1: HashSet[int] = toSet([1, 2, 4, 8, 16]) + s2: HashSet[int] = toSet([1, 2, 3, 5, 8]) + s3: HashSet[int] = toSet([3, 5, 7]) block union: let |