mirror of
https://github.com/graphql-python/graphene.git
synced 2025-02-09 08:00:39 +03:00
Fixed Python3 tests
This commit is contained in:
parent
9deec688ed
commit
ba4d1d6abf
|
@ -74,7 +74,7 @@ def test_objecttype_inheritance():
|
||||||
|
|
||||||
graphql_type = MyObjectType._meta.graphql_type
|
graphql_type = MyObjectType._meta.graphql_type
|
||||||
fields = graphql_type.get_fields()
|
fields = graphql_type.get_fields()
|
||||||
assert fields.keys() == ['inherited', 'field1', 'field2']
|
assert list(fields.keys()) == ['inherited', 'field1', 'field2']
|
||||||
|
|
||||||
|
|
||||||
def test_objecttype_as_container_get_fields():
|
def test_objecttype_as_container_get_fields():
|
||||||
|
|
Loading…
Reference in New Issue
Block a user