Fix assertion

This commit is contained in:
Dan Palmer 2018-08-29 18:10:37 +01:00 committed by GitHub
parent 07ec419578
commit baec6249e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -138,7 +138,7 @@ def test_connectionfield_node_deprecated():
with pytest.raises(Exception) as exc_info:
field.type
assert "ConnectionField's now need a explicit ConnectionType for Nodes." in str(
assert "ConnectionFields now need a explicit ConnectionType for Nodes." in str(
exc_info.value
)