From 82c944a89a4e80ada97d0d7ad05b6967b5301795 Mon Sep 17 00:00:00 2001 From: Paul Craciunoiu Date: Sat, 6 Jun 2020 11:42:44 -0600 Subject: [PATCH] Older python syntax. --- graphene_django/tests/test_query.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/graphene_django/tests/test_query.py b/graphene_django/tests/test_query.py index 92b8101..3d480b2 100644 --- a/graphene_django/tests/test_query.py +++ b/graphene_django/tests/test_query.py @@ -1086,9 +1086,9 @@ def test_should_resolve_get_queryset_connectionfields(): REPORTERS = [ dict( - first_name=f"First {i}", - last_name=f"Last {i}", - email=f"johndoe+{i}@example.com", + first_name="First {}".format(i), + last_name=f"Last {}".format(i), + email="johndoe+{i}@example.com".format(i), a_choice=1, ) for i in range(6)