Merge branch 'refs/heads/master' into django

This commit is contained in:
Syrus Akbary 2015-09-29 00:33:56 -07:00
commit c52733ac9c
2 changed files with 6 additions and 6 deletions

View File

@ -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

View File

@ -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