Fixed Python3 tests

This commit is contained in:
Syrus Akbary 2016-09-17 17:28:41 -07:00
parent ec4b164de3
commit 7756b0df8f
2 changed files with 10 additions and 4 deletions

View File

@ -27,16 +27,20 @@ def test_should_map_fields_correctly():
class Meta:
model = Reporter
registry = Registry()
assert list(
ReporterType2._meta.fields.keys()) == [
fields = list(ReporterType2._meta.fields.keys())
assert fields[:-2] == [
'id',
'first_name',
'last_name',
'email',
'pets',
'a_choice',
]
assert sorted(fields[-2:]) == [
'articles',
'films']
'films',
]
def test_should_map_only_few_fields():

View File

@ -45,7 +45,9 @@ def test_django_get_node(get):
def test_django_objecttype_map_correct_fields():
fields = Reporter._meta.fields
assert list(fields.keys()) == ['id', 'first_name', 'last_name', 'email', 'pets', 'a_choice', 'articles', 'films']
fields = list(fields.keys())
assert fields[:-2] == ['id', 'first_name', 'last_name', 'email', 'pets', 'a_choice']
assert sorted(fields[-2:]) == ['articles', 'films']
def test_django_objecttype_with_node_have_correct_fields():