From 038fbe62b0f45c9f12647b900192f1849e19831b Mon Sep 17 00:00:00 2001 From: Paul Craciunoiu Date: Sat, 6 Jun 2020 11:44:56 -0600 Subject: [PATCH] Stray f-string --- graphene_django/tests/test_query.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graphene_django/tests/test_query.py b/graphene_django/tests/test_query.py index 3d480b2..477d147 100644 --- a/graphene_django/tests/test_query.py +++ b/graphene_django/tests/test_query.py @@ -1087,7 +1087,7 @@ def test_should_resolve_get_queryset_connectionfields(): REPORTERS = [ dict( first_name="First {}".format(i), - last_name=f"Last {}".format(i), + last_name="Last {}".format(i), email="johndoe+{i}@example.com".format(i), a_choice=1, )