Skip to content

Commit

Permalink
Remove f-string from tests for 2.7 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
Erwan Leroy committed Jul 11, 2022
1 parent 739ebd4 commit 1afa8d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_user.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ def test_users_create_token(logged_rocket, user):
def test_users_create_update_delete(logged_rocket, user):
name = str(uuid.uuid1())
users_create = logged_rocket.users_create(
email=f"{name}@domain.com",
email="{}@domain.com".format(name),
name=name,
password=user.password,
username=name,
Expand Down

0 comments on commit 1afa8d1

Please sign in to comment.