aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorGravatar Peter McGoron 2021-07-26 18:44:50 -0400
committerGravatar - 2021-07-26 22:56:45 -0400
commitb58c499df258523f184425fde91212c0f45b0b43 (patch)
treeaa42f2c72aa53e52c53bf2e47d95ef8a5ecc4c04 /test
parentupdate README.md (diff)
queryparse: use demorgan's laws to simplify parsed expression
Diffstat (limited to 'test')
-rwxr-xr-xtest/t_queryparse.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/t_queryparse.py b/test/t_queryparse.py
index df21639..3cf5dcb 100755
--- a/test/t_queryparse.py
+++ b/test/t_queryparse.py
@@ -18,3 +18,4 @@ f(["NOT", "[", "x", "y", "z", "]"])
f(["x", "y", "NOT", "z", "[", "a", "OR", "b", "]", "c"])
f(["x", "y", "z", "OR", "NOT", "x", "a", "z"])
f(["~~internal-*", "~-Application*", "NOT", "~~*xyz*"])
+f(["NOT", "[", "x", "y", "z", "OR", "x", "a", "]", "b"])