Skip to content

Commit 7d2ea1e

Browse files
committed
Update test_schema.py
1 parent af4e562 commit 7d2ea1e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/unit/core/test_schema.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class Model(CPPythonModel):
2525
def test_model_construction(self) -> None:
2626
"""Verifies that the base model type has the expected construction behaviors"""
2727
model = self.Model(**{'aliased_variable': True})
28-
assert model.aliased_variable is False
28+
assert model.aliased_variable is True
2929

3030
model = self.Model(**{'aliased-variable': True})
3131
assert model.aliased_variable is True

0 commit comments

Comments
 (0)