aboutsummaryrefslogtreecommitdiffstats
path: root/community/py3-flask/skip-bad-request-test.patch
diff options
context:
space:
mode:
Diffstat (limited to 'community/py3-flask/skip-bad-request-test.patch')
-rw-r--r--community/py3-flask/skip-bad-request-test.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/community/py3-flask/skip-bad-request-test.patch b/community/py3-flask/skip-bad-request-test.patch
deleted file mode 100644
index ecca4dcfcf..0000000000
--- a/community/py3-flask/skip-bad-request-test.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-diff --git a/tests/test_helpers.py b/tests/test_helpers.py
-index 75c8105..af79f4e 100644
---- a/tests/test_helpers.py
-+++ b/tests/test_helpers.py
-@@ -714,8 +714,8 @@ class TestSendfile(object):
- app.root_path = os.path.join(os.path.dirname(__file__),
- 'test_apps', 'subdomaintestmodule')
-
-- with pytest.raises(BadRequest):
-- flask.send_from_directory('static', 'bad\x00')
-+# with pytest.raises(BadRequest):
-+# flask.send_from_directory('static', 'bad\x00')
-
-
- class TestUrlFor(object):