mirror of
https://github.com/graphql-python/graphene-django.git
synced 2025-07-12 09:12:18 +03:00
Older python syntax.
This commit is contained in:
parent
201fd19451
commit
82c944a89a
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue
Block a user