Skip to content

Commit 2e46610

Browse files
committed
minor adjustment in test to enhance code coverage
1 parent 3cd984a commit 2e46610

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/unit/test_schema.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1151,7 +1151,7 @@ def _make_one(self, *args, **kw):
11511151
def test_ctor_valid_input(self, type_system, expected):
11521152
result = self._make_one(type_system=type_system)
11531153

1154-
assert result._properties["typeSystem"] == expected
1154+
assert result.type_system == expected
11551155

11561156
def test_ctor_invalid_input(self):
11571157
with pytest.raises(TypeError) as e:

0 commit comments

Comments
 (0)