diff options
author | Eduardo Julian | 2022-10-21 01:01:35 -0400 |
---|---|---|
committer | Eduardo Julian | 2022-10-21 01:01:35 -0400 |
commit | a2730ad74042cbc91602b47b2c6e6a7309bdfda0 (patch) | |
tree | 9ad28a1e83ba173dea1c64a584dbb6876f58a2a9 /stdlib/source/test | |
parent | 3525998c8fa9768dfeb333c553ccd71f38ac5311 (diff) |
Clean-up after format change for extensions [part 0]
Diffstat (limited to 'stdlib/source/test')
-rw-r--r-- | stdlib/source/test/lux/world/net/http/version.lux | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/source/test/lux/world/net/http/version.lux b/stdlib/source/test/lux/world/net/http/version.lux index f005e944b..0aa682b1a 100644 --- a/stdlib/source/test/lux/world/net/http/version.lux +++ b/stdlib/source/test/lux/world/net/http/version.lux @@ -21,7 +21,7 @@ (def .public random (Random /.Version) - (all random.or + (all random.either (random#in /.v0_9) (random#in /.v1_0) (random#in /.v1_1) @@ -42,7 +42,7 @@ (_.coverage [/.v0_9 /.v1_0 /.v1_1 /.v2_0] (let [options (list /.v0_9 /.v1_0 /.v1_1 /.v2_0) - uniques (set.empty /.hash options)] + uniques (set.of_list /.hash options)] (n.= (list.size options) (set.size uniques)))) ))) |