summaryrefslogtreecommitdiff
path: root/filter/test.conf
diff options
context:
space:
mode:
authorMaria Matejka <mq@ucw.cz>2019-03-23 13:32:14 +0100
committerMaria Matejka <mq@ucw.cz>2019-03-23 13:32:14 +0100
commitfe503c7c0632b385222c92b85d04526fdf36a1a3 (patch)
tree99ced640980468182dc06a53661946d533aeeb8c /filter/test.conf
parent7078aa63ae498b55c729df4a075eb28019917e81 (diff)
Filter: fixed error-checking bug in !~ operator
Diffstat (limited to 'filter/test.conf')
-rw-r--r--filter/test.conf1
1 files changed, 1 insertions, 0 deletions
diff --git a/filter/test.conf b/filter/test.conf
index b9f1b3aa..ba25a34b 100644
--- a/filter/test.conf
+++ b/filter/test.conf
@@ -136,6 +136,7 @@ int set is;
bt_assert(2 ~ [ 1, 2, 3 ]);
bt_assert(5 ~ [ 4 .. 7 ]);
bt_assert(1 !~ [ 2, 3, 4 ]);
+ bt_assert(999 !~ [ 666, 333 ]);
is = [ 2, 3, 4, 7..11 ];
bt_assert(10 ~ is);