aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLorenz Diener <[email protected]>2022-12-02 23:55:32 +0200
committerGitHub <[email protected]>2022-12-02 23:55:32 +0200
commitf5d4fbc1f0bd61e80f9daced15d7ef7ee349b50f (patch)
tree247b41199512db9693d00baf7522602805e31c3f /tests/test_create_app.py
parentc796cf39b01e38fe381fb4743988da991b072183 (diff)
parent325cc917d5ad14b130b156d23b7adca46499dc24 (diff)
downloadmastodon.py-f5d4fbc1f0bd61e80f9daced15d7ef7ee349b50f.tar.gz
Merge pull request #290 from eumiro/fstrings
refactor: use f-strings
Diffstat (limited to 'tests/test_create_app.py')
-rw-r--r--tests/test_create_app.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_create_app.py b/tests/test_create_app.py
index c7282df..97556c6 100644
--- a/tests/test_create_app.py
+++ b/tests/test_create_app.py
@@ -64,7 +64,7 @@ def test_app_account_create():
64 test_app[1], 64 test_app[1],
65 api_base_url="http://localhost:3000/" 65 api_base_url="http://localhost:3000/"
66 ) 66 )
67 test_token = test_app_api.create_account("coolguy" + suffix, "swordfish", "email@localhost" + suffix, agreement=True) 67 test_token = test_app_api.create_account(f"coolguy{suffix}", "swordfish", f"email@localhost{suffix}", agreement=True)
68 assert test_token 68 assert test_token
69 69
70 # We can also test resending (marginally) 70 # We can also test resending (marginally)
Powered by cgit v1.2.3 (git 2.41.0)