We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af4e562 commit 7d2ea1eCopy full SHA for 7d2ea1e
tests/unit/core/test_schema.py
@@ -25,7 +25,7 @@ class Model(CPPythonModel):
25
def test_model_construction(self) -> None:
26
"""Verifies that the base model type has the expected construction behaviors"""
27
model = self.Model(**{'aliased_variable': True})
28
- assert model.aliased_variable is False
+ assert model.aliased_variable is True
29
30
model = self.Model(**{'aliased-variable': True})
31
assert model.aliased_variable is True
0 commit comments