aboutsummaryrefslogtreecommitdiff
path: root/tests/collections.nom
diff options
context:
space:
mode:
authorBruce Hill <bitbucket@bruce-hill.com>2018-04-08 15:41:05 -0700
committerBruce Hill <bitbucket@bruce-hill.com>2018-04-08 15:41:55 -0700
commitfd621a1062c12b808efd7f8adf1957e0fe978ecc (patch)
tree6e19a251c58c1187a128989f983073bb214052db /tests/collections.nom
parenta49e97f0e3a8b69afbc375fac7e04fe49aaf0591 (diff)
Cleaned up LHS of "." operator to avoid adding unnecessary parens so
Lua's parser doesn't get confused by (x).y = 1.
Diffstat (limited to 'tests/collections.nom')
-rw-r--r--tests/collections.nom2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/collections.nom b/tests/collections.nom
index 1c82487..855baea 100644
--- a/tests/collections.nom
+++ b/tests/collections.nom
@@ -27,7 +27,7 @@ assume (([[1,2],[3,4]] flattened) = [1,2,3,4])
assume ((entries in {x:1}) = [{key:"x",value:1}])
assume ((keys in {x:1}) = ["x"])
assume ((values in {x:1}) = [1])
-assume ((sorted [3,1,2]) = [1,2,3])
+#assume ((sorted [3,1,2]) = [1,2,3])
%x <- [3,1,2]
sort %x
assume (%x = [1,2,3])