mirror of
https://github.com/graphql-python/graphene-django.git
synced 2025-07-12 17:22:20 +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 = [
|
REPORTERS = [
|
||||||
dict(
|
dict(
|
||||||
first_name=f"First {i}",
|
first_name="First {}".format(i),
|
||||||
last_name=f"Last {i}",
|
last_name=f"Last {}".format(i),
|
||||||
email=f"johndoe+{i}@example.com",
|
email="johndoe+{i}@example.com".format(i),
|
||||||
a_choice=1,
|
a_choice=1,
|
||||||
)
|
)
|
||||||
for i in range(6)
|
for i in range(6)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user