diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2021-02-24 14:17:16 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-24 22:17:16 +0000 |
commit | 578d1ee751fa8165a64c842c40216a752caf47e2 (patch) | |
tree | ef042ffd3c2797e7c51b9fc1eb68d209b05193fd /testament | |
parent | a4e6b242d56d80df004bf625643fcb3c9d3f1b7f (diff) | |
download | Nim-578d1ee751fa8165a64c842c40216a752caf47e2.tar.gz |
`std/options`: `$some(3)` is now `"some(3)"`, etc. (#17147)
* std/options: $some(3) is now "some(3)", not "Some(3)", `$none(int)` is now `"none(int)"` instead of `"None[int]"` * fix tests * disable optionsutils
Diffstat (limited to 'testament')
-rw-r--r-- | testament/important_packages.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testament/important_packages.nim b/testament/important_packages.nim index b913f4626..ccf8a4359 100644 --- a/testament/important_packages.nim +++ b/testament/important_packages.nim @@ -114,7 +114,7 @@ pkg2 "nimwc", "nim c nimwc.nim" pkg2 "norm", "nim c -r tests/sqlite/trows.nim" pkg2 "npeg", "nimble testarc" pkg2 "numericalnim", "nim c -r tests/test_integrate.nim" -pkg2 "optionsutils" +# pkg2 "optionsutils" # pending changing test from `Some` to `some` (etc) in tests/test2.nim, refs #17147 pkg2 "ormin", "nim c -o:orminn ormin.nim" pkg2 "parsetoml" pkg2 "patty" |