diff options
Diffstat (limited to '')
-rw-r--r-- | test/test_routing.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/test/test_routing.py b/test/test_routing.py index be9a1faf..cb9c3fd2 100644 --- a/test/test_routing.py +++ b/test/test_routing.py @@ -1362,10 +1362,7 @@ class TestRouting(TestApplicationProto): assert self.get(url='/?var2=val2')['status'] == 404, 'arr 7' assert self.get(url='/?var3=foo')['status'] == 200, 'arr 8' - def test_routes_match_arguments_invalid(self, skip_alert): - # TODO remove it after controller fixed - skip_alert(r'failed to apply new conf') - + def test_routes_match_arguments_invalid(self): self.route_match_invalid({"arguments": ["var"]}) self.route_match_invalid({"arguments": [{"var1": {}}]}) self.route_match_invalid({"arguments": {"": "bar"}}) |