match existing test case

This commit is contained in:
getglad 2019-03-28 06:13:22 -04:00
parent 5a537872e4
commit a47ac0feb4

View File

@ -92,7 +92,7 @@ def test_generate_objecttype_with_private_attributes():
assert m._private_state == "custom" assert m._private_state == "custom"
m = MyObjectType(_other_private_state="custom") m = MyObjectType(_other_private_state="custom")
assert getattr(m, "_other_private_state", None) is "custom" assert hasattr(MyObjectType, "_private_state")
def test_ordered_fields_in_objecttype(): def test_ordered_fields_in_objecttype():