diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2021-03-01 11:59:43 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-01 20:59:43 +0100 |
commit | 6c5872c1690dcd5f50477aeef0218a0dbbcdd6e6 (patch) | |
tree | a9fc1212dd7403786ea381eca3e68d7124d99c65 /tests/niminaction/Chapter1 | |
parent | bb0c19f42cee41d5cdccbb8c47fc83669cba5540 (diff) | |
download | Nim-6c5872c1690dcd5f50477aeef0218a0dbbcdd6e6.tar.gz |
`--nilseqs` is now a deprecated noop (#17211)
* --nilseqs is now a deprecated noop * fix tests; fix: future => sugar
Diffstat (limited to 'tests/niminaction/Chapter1')
-rw-r--r-- | tests/niminaction/Chapter1/various1.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/niminaction/Chapter1/various1.nim b/tests/niminaction/Chapter1/various1.nim index 4e2cb463d..21553dc40 100644 --- a/tests/niminaction/Chapter1/various1.nim +++ b/tests/niminaction/Chapter1/various1.nim @@ -32,7 +32,7 @@ block: # Block added due to clash. let dog = Dog() dog.bark() #<2> -import sequtils, future, strutils +import sequtils, sugar, strutils let list = @["Dominik Picheta", "Andreas Rumpf", "Desmond Hume"] list.map( (x: string) -> (string, string) => (x.split[0], x.split[1]) |