mirror of
https://github.com/graphql-python/graphene.git
synced 2024-11-11 04:07:16 +03:00
Merge branch 'refs/heads/master' into django
This commit is contained in:
commit
c52733ac9c
|
@ -33,5 +33,5 @@ def test_correct_fetch_first_ship_rebels():
|
|||
}
|
||||
}
|
||||
result = schema.execute(query)
|
||||
assert result.errors == None
|
||||
assert not result.errors
|
||||
assert result.data == expected
|
||||
|
|
|
@ -19,7 +19,7 @@ def test_correctly_fetches_id_name_rebels():
|
|||
}
|
||||
}
|
||||
result = schema.execute(query)
|
||||
assert result.errors == None
|
||||
assert not result.errors
|
||||
assert result.data == expected
|
||||
|
||||
def test_correctly_refetches_rebels():
|
||||
|
@ -40,7 +40,7 @@ def test_correctly_refetches_rebels():
|
|||
}
|
||||
}
|
||||
result = schema.execute(query)
|
||||
assert result.errors == None
|
||||
assert not result.errors
|
||||
assert result.data == expected
|
||||
|
||||
def test_correctly_fetches_id_name_empire():
|
||||
|
@ -59,7 +59,7 @@ def test_correctly_fetches_id_name_empire():
|
|||
}
|
||||
}
|
||||
result = schema.execute(query)
|
||||
assert result.errors == None
|
||||
assert not result.errors
|
||||
assert result.data == expected
|
||||
|
||||
def test_correctly_refetches_empire():
|
||||
|
@ -80,7 +80,7 @@ def test_correctly_refetches_empire():
|
|||
}
|
||||
}
|
||||
result = schema.execute(query)
|
||||
assert result.errors == None
|
||||
assert not result.errors
|
||||
assert result.data == expected
|
||||
|
||||
def test_correctly_refetches_xwing():
|
||||
|
@ -101,5 +101,5 @@ def test_correctly_refetches_xwing():
|
|||
}
|
||||
}
|
||||
result = schema.execute(query)
|
||||
assert result.errors == None
|
||||
assert not result.errors
|
||||
assert result.data == expected
|
||||
|
|
Loading…
Reference in New Issue
Block a user