mirror of
https://github.com/graphql-python/graphene.git
synced 2025-02-22 22:52:58 +03:00
Fix linting
This commit is contained in:
parent
1d86d18cbf
commit
5845aaf723
|
@ -30,10 +30,10 @@ def test_json_string():
|
|||
test_json_string = '{"foo": "bar"}'
|
||||
|
||||
test_object = JSONString().parse_value(test_json_string)
|
||||
assert test_object == { 'foo': 'bar' }
|
||||
assert test_object == {'foo': 'bar'}
|
||||
|
||||
assert JSONString.serialize(test_object) == test_json_string
|
||||
|
||||
node = StringValue(test_json_string)
|
||||
test_object = JSONString.parse_literal(node)
|
||||
assert test_object == { 'foo': 'bar' }
|
||||
assert test_object == {'foo': 'bar'}
|
||||
|
|
Loading…
Reference in New Issue
Block a user