diff options
| author | 2021-07-25 23:57:08 -0400 | |
|---|---|---|
| committer | 2021-07-26 22:55:51 -0400 | |
| commit | dd1471b44e9f7f86a83265f394da2713b12cd43a (patch) | |
| tree | 0a0fb4fc0137f7461034e0bc3a1f41b6985df863 /test | |
| parent | queryparse: lift encapsulate() calls into loops to make cleaner parse trees (diff) | |
queryparse: fix infinite recursion in '[' e1 ']'
Diffstat (limited to 'test')
| -rwxr-xr-x | test/t_queryparse.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/t_queryparse.py b/test/t_queryparse.py index e1728e3..f3709d6 100755 --- a/test/t_queryparse.py +++ b/test/t_queryparse.py @@ -11,3 +11,4 @@ f(["x", "OR", "y"]) f(["x", "y", "OR", "a", "b"]) f(["x", "y", "z", "w"]) f(["NOT", "x", "OR", "y"]) +f(["NOT", "[", "x", "y", "z", "]"]) |
