summaryrefslogtreecommitdiffhomepage
path: root/test/test_routing.py
diff options
context:
space:
mode:
authorAndrey Zelenkov <zelenkov@nginx.com>2019-07-02 15:36:13 +0300
committerAndrey Zelenkov <zelenkov@nginx.com>2019-07-02 15:36:13 +0300
commit29225c4fc62e2cf8b06ad8507fe64c079c69974a (patch)
tree271b3b25732fac74527634183a494e29532c34f0 /test/test_routing.py
parentb1ee07370796a53b77746dbd11b1b71c73ae940e (diff)
downloadunit-29225c4fc62e2cf8b06ad8507fe64c079c69974a.tar.gz
unit-29225c4fc62e2cf8b06ad8507fe64c079c69974a.tar.bz2
Tests: removed misleading comments in test_routing.t.
Diffstat (limited to 'test/test_routing.py')
-rw-r--r--test/test_routing.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_routing.py b/test/test_routing.py
index ef917ea2..7e14fd65 100644
--- a/test/test_routing.py
+++ b/test/test_routing.py
@@ -1993,12 +1993,12 @@ class TestRouting(TestApplicationProto):
self.get(url='/?Foo=bar')['status'],
404,
'match arguments case sensitive',
- ) # FAIL
+ )
self.assertEqual(
self.get(url='/?foo=Bar')['status'],
404,
'match arguments case sensitive 2',
- ) # FAIL
+ )
self.assertEqual(
self.get(url='/?foo=bar1')['status'],
404,