aboutsummaryrefslogtreecommitdiff
path: root/stdlib/test
diff options
context:
space:
mode:
authorEduardo Julian2016-12-22 02:10:30 -0400
committerEduardo Julian2016-12-22 02:10:30 -0400
commit02e6cd7687a0acba65b47f12db45bea0db604fdb (patch)
treea00f46b68a3ba0631e05278f96bee55fd04ede65 /stdlib/test
parent168c783c2aa203316846e4f86de30f0735e51917 (diff)
- Fixed a bug in the way hierarchy->base demotion worked for Dict nodes.
- Fixed a bug in a test for lux/data/struct/list.
Diffstat (limited to 'stdlib/test')
-rw-r--r--stdlib/test/test/lux/data/struct/set.lux2
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/test/test/lux/data/struct/set.lux b/stdlib/test/test/lux/data/struct/set.lux
index bc284dd4a..27d80959f 100644
--- a/stdlib/test/test/lux/data/struct/set.lux
+++ b/stdlib/test/test/lux/data/struct/set.lux
@@ -59,7 +59,7 @@
(assert "After substracting a set A from another B, no member of A can be a member of B."
(let [sub (&;difference setR setL)]
- (not (list;any? (&;member? setL) (&;to-list setR)))))
+ (not (list;any? (&;member? sub) (&;to-list setR)))))
(assert "Every member of a set must be identifiable."
(and (not (&;member? setL non-member))