summaryrefslogtreecommitdiff
path: root/dev-python/pytest-flakes/files/pytest-flakes-4.0.3-fix-py3.10.patch
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/pytest-flakes/files/pytest-flakes-4.0.3-fix-py3.10.patch')
-rw-r--r--dev-python/pytest-flakes/files/pytest-flakes-4.0.3-fix-py3.10.patch17
1 files changed, 0 insertions, 17 deletions
diff --git a/dev-python/pytest-flakes/files/pytest-flakes-4.0.3-fix-py3.10.patch b/dev-python/pytest-flakes/files/pytest-flakes-4.0.3-fix-py3.10.patch
deleted file mode 100644
index 35b4809c865b..000000000000
--- a/dev-python/pytest-flakes/files/pytest-flakes-4.0.3-fix-py3.10.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-From: Arthur Zamarin <arthurzam@gentoo.org>
-Date: Fri, 27 Aug 2021 08:23:16 +0300
-Subject: [PATCH] test_syntax_error: fix for python 3.10
-
-Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
---- a/test_flakes.py
-+++ b/test_flakes.py
-@@ -20,7 +20,8 @@ for x in []
- pass
- """)
- result = testdir.runpytest("--flakes", "--ignore", testdir.tmpdir)
-- assert "1: invalid syntax" in result.stdout.str()
-+ assert ("1: invalid syntax" in result.stdout.str() or
-+ "1: expected ':'" in result.stdout.str())
- assert 'passed' not in result.stdout.str()
-
-