This commit is contained in:
James Hilton-Balfe
2023-10-16 12:33:42 +01:00
committed by GitHub
parent ca6b9fe1a2
commit 2bcb05a905

View File

@@ -41,3 +41,8 @@ def test_null_fields_json():
"test8": None,
"test9": None,
}
def test_unset_access(): # see #523
assert Test().test1 is None
assert Test(test1=None).test1 is None