From f43265ba2c0c4a08a3c513fb11dca9835388a001 Mon Sep 17 00:00:00 2001 From: Andrei Zeliankou Date: Wed, 31 Mar 2021 23:42:00 +0100 Subject: [PATCH] Tests: removed skip_alert(). --- test/test_routing.py | 5 +---- 1 file changed, 1 insertion(+), 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"}})