diff options
author | Eduardo Julian | 2022-11-19 21:23:04 -0400 |
---|---|---|
committer | Eduardo Julian | 2022-11-19 21:23:04 -0400 |
commit | d4c72c03c1a47fe388ec36e973db17cb95dfdcfb (patch) | |
tree | aef020e7b5f351cc0fd20e0656edc6a9f853bc62 /stdlib/source/library/lux/test | |
parent | 6aa4fac0c97264a2b1186063c062ae0873582f54 (diff) |
Got the tests to compile again for Python.
Diffstat (limited to 'stdlib/source/library/lux/test')
-rw-r--r-- | stdlib/source/library/lux/test/coverage.lux | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/stdlib/source/library/lux/test/coverage.lux b/stdlib/source/library/lux/test/coverage.lux index 86b1314cc..e717d27ed 100644 --- a/stdlib/source/library/lux/test/coverage.lux +++ b/stdlib/source/library/lux/test/coverage.lux @@ -42,5 +42,6 @@ (-> Text Text Coverage) (|> encoding (text.all_split_by ..separator) - (list#each (|>> [module])) - (set.of_list symbol.hash))) + (list#mix (function (_ short it) + (set.has [module short] it)) + (set.empty symbol.hash)))) |