Skip to content

Commit 6ce853e

Browse files
committed
fix: fixed split in score
1 parent 450d1ee commit 6ce853e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/modules/retrieval/test_logreg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@ def test_score_evaluates_model():
3232
mock_context.data_handler.test_utterances.return_value = ["hello", "goodbye"]
3333
mock_context.data_handler.test_labels.return_value = [0, 1]
3434

35-
scores = module.score(mock_context, split="test")
35+
scores = module.score(mock_context, split="validation")
3636

3737
assert isinstance(scores, dict)

0 commit comments

Comments
 (0)