Skip to content

Commit 7cf09e0

Browse files
committed
Moved model.meta.property to model.property
1 parent b0b7b92 commit 7cf09e0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

‎tests/llm/evaluators/test_coherency_evaluator.py‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ def _make_eval_datasets():
2727
def _make_mock_model():
2828
model = Mock()
2929
model.predict.return_value = ModelPredictionResults(prediction=["Paris", "Eo Romam"])
30-
model.meta.feature_names = ["question", "other"]
31-
model.meta.name = "Mock model for test"
32-
model.meta.description = "This is a model for testing purposes"
30+
model.feature_names = ["question", "other"]
31+
model.name = "Mock model for test"
32+
model.description = "This is a model for testing purposes"
3333
return model
3434

3535

0 commit comments

Comments
 (0)