This commit is contained in:
allen-munsch 2022-10-18 17:24:04 -05:00
parent 0b922d45b1
commit bd9466c37d
No known key found for this signature in database
GPG Key ID: 0C977048B8BDD447

View File

@ -32,7 +32,8 @@ def test_schema_get_type():
schema = Schema(Query) schema = Schema(Query)
assert schema.Query == Query assert schema.Query == Query
assert schema.MyOtherType == MyOtherType assert schema.MyOtherType == MyOtherType
schema.get_type('MyOtherType') assert schema.get_type('MyOtherType') == MyOtherType
def test_schema_get_type_error(): def test_schema_get_type_error():