Skip to content

Commit df48c08

Browse files
committed
falcon test fstring fix
1 parent f2bc3b2 commit df48c08

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/integration/contrib/falcon/test_falcon.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def test_invalid_security(self, client):
5757
def test_valid(self, client):
5858
auth = 'authuser'
5959
headers = {
60-
'Authorization': 'Basic {auth}'.format(auth=auth),
60+
'Authorization': f'Basic {auth}',
6161
'Content-Type': 'application/json',
6262
}
6363

0 commit comments

Comments
 (0)