From 1f8e290a7b287c5d8aaafd0ff91692d1343ce1a9 Mon Sep 17 00:00:00 2001 From: Michael Merickel Date: Sun, 13 Mar 2022 18:23:15 -0500 Subject: pyupgrade --py37-plus --- tests/test_authentication.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/test_authentication.py') diff --git a/tests/test_authentication.py b/tests/test_authentication.py index 5f46e4cd1..a950774c5 100644 --- a/tests/test_authentication.py +++ b/tests/test_authentication.py @@ -1946,7 +1946,7 @@ class DummyAuthTktModule: if isinstance(v, bytes): v = text_(v) new_items.append((k, v)) - result = '/'.join(['%s=%s' % (k, v) for k, v in new_items]) + result = '/'.join([f'{k}={v}' for k, v in new_items]) return result self.AuthTicket = AuthTicket -- cgit v1.2.3