dev-python/flask-login: remove unused patch(es)

Package-Manager: Portage-2.3.96, Repoman-2.3.22
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com>
Signed-off-by: Aaron Bauman <bman@gentoo.org>
This commit is contained in:
Michael Mair-Keimberger
2020-03-30 18:16:10 +02:00
committed by Aaron Bauman
parent 9f99e6b673
commit 076be65393

View File

@@ -1,29 +0,0 @@
diff --git a/test_login.py b/test_login.py
index 3f110e0..0c060f5 100644
--- a/test_login.py
+++ b/test_login.py
@@ -39,6 +39,7 @@ from flask.ext.login import (LoginManager, UserMixin, AnonymousUserMixin,
if str is not bytes:
unicode = str
+werkzeug_version = tuple(int(i) for i in werkzeug_version.split('.'))
@contextmanager
def listen_to(signal):
@@ -1073,14 +1074,14 @@ class LoginTestCase(unittest.TestCase):
#
# Misc
#
- @unittest.skipIf(werkzeug_version.startswith("0.9"),
+ @unittest.skipIf(werkzeug_version >= (0, 9),
"wait for upstream implementing RFC 5987")
def test_chinese_user_agent(self):
with self.app.test_client() as c:
result = c.get('/', headers=[('User-Agent', u'中文')])
self.assertEqual(u'Welcome!', result.data.decode('utf-8'))
- @unittest.skipIf(werkzeug_version.startswith("0.9"),
+ @unittest.skipIf(werkzeug_version >= (0, 9),
"wait for upstream implementing RFC 5987")
def test_russian_cp1251_user_agent(self):
with self.app.test_client() as c: