Skip to content

Commit

Permalink
fix start runner test
Browse files Browse the repository at this point in the history
  • Loading branch information
lievan committed Jan 6, 2025
1 parent 944a050 commit 4ad5e4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/llmobs/test_llmobs_evaluator_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def test_evaluator_runner_start(mock_evaluator_logs):
evaluator_runner = EvaluatorRunner(interval=0.01, llmobs_service=mock.MagicMock())
evaluator_runner.evaluators.append(DummyEvaluator(llmobs_service=mock.MagicMock()))
evaluator_runner.start()
mock_evaluator_logs.debug.assert_has_calls([mock.call("started %r to %r", "EvaluatorRunner")])
mock_evaluator_logs.debug.assert_has_calls([mock.call("started %r", "EvaluatorRunner")])


def test_evaluator_runner_buffer_limit(mock_evaluator_logs):
Expand Down

0 comments on commit 4ad5e4f

Please sign in to comment.