mirror of
https://github.com/graphql-python/graphene.git
synced 2024-11-22 09:36:44 +03:00
fix black formatting
This commit is contained in:
parent
4346832f71
commit
1eae96fd43
|
@ -152,7 +152,6 @@ def test_mutation_allow_to_have_custom_args():
|
|||
|
||||
def test_mutation_as_subclass():
|
||||
class BaseCreateUser(Mutation):
|
||||
|
||||
class Arguments:
|
||||
name = String()
|
||||
|
||||
|
@ -162,7 +161,6 @@ def test_mutation_as_subclass():
|
|||
return args
|
||||
|
||||
class CreateUserWithPlanet(BaseCreateUser):
|
||||
|
||||
class Arguments(BaseCreateUser.Arguments):
|
||||
planet = String()
|
||||
|
||||
|
@ -178,17 +176,14 @@ def test_mutation_as_subclass():
|
|||
a = String()
|
||||
|
||||
schema = Schema(query=Query, mutation=MyMutation)
|
||||
result = schema.execute(''' mutation mymutation {
|
||||
result = schema.execute(
|
||||
""" mutation mymutation {
|
||||
createUserWithPlanet(name:"Peter", planet: "earth") {
|
||||
name
|
||||
planet
|
||||
}
|
||||
}
|
||||
''')
|
||||
"""
|
||||
)
|
||||
assert not result.errors
|
||||
assert result.data == {
|
||||
'createUserWithPlanet': {
|
||||
'name': 'Peter',
|
||||
'planet': 'earth',
|
||||
}
|
||||
}
|
||||
assert result.data == {"createUserWithPlanet": {"name": "Peter", "planet": "earth"}}
|
||||
|
|
Loading…
Reference in New Issue
Block a user