aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_flow.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_flow.py')
-rw-r--r--test/test_flow.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/test/test_flow.py b/test/test_flow.py
index 53d92f25..277d2407 100644
--- a/test/test_flow.py
+++ b/test/test_flow.py
@@ -171,12 +171,15 @@ class TestFlow:
f = tutils.tflow()
f.response = tutils.tresp()
f.request = f.response.request
- assert not f.match(filt.parse("~b test"))
+ assert not f.match("~b test")
assert f.match(None)
- assert not f.match(filt.parse("~b test"))
+ assert not f.match("~b test")
f = tutils.tflow_err()
- assert f.match(filt.parse("~e"))
+ assert f.match("~e")
+
+ tutils.raises(ValueError, f.match, "~")
+
def test_backup(self):
f = tutils.tflow()