aboutsummaryrefslogtreecommitdiffstats
path: root/mediagoblin/tests/test_oauth1.py
diff options
context:
space:
mode:
Diffstat (limited to 'mediagoblin/tests/test_oauth1.py')
-rw-r--r--mediagoblin/tests/test_oauth1.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mediagoblin/tests/test_oauth1.py b/mediagoblin/tests/test_oauth1.py
index 345b308e..25f7c0d3 100644
--- a/mediagoblin/tests/test_oauth1.py
+++ b/mediagoblin/tests/test_oauth1.py
@@ -123,7 +123,7 @@ class TestOAuth:
def to_authorize_headers(self, data):
headers = ""
for key, value in data.items():
- headers += '{}="{}",'.format(key, value)
+ headers += f'{key}="{value}",'
return {"Authorization": "OAuth " + headers[:-1]}
def test_request_token(self):