mirror of
				https://github.com/graphql-python/graphene.git
				synced 2025-11-04 01:47:45 +03:00 
			
		
		
		
	Merge pull request #802 from sebdiem/sdr/fix_black_formatting
fix black formatting
This commit is contained in:
		
						commit
						bfd6fd7c49
					
				| 
						 | 
				
			
			@ -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