diff options
Diffstat (limited to 'tests/test_authentication.py')
| -rw-r--r-- | tests/test_authentication.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
