Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
jakekaplan committed Sep 5, 2024
1 parent 82d44b1 commit f81541f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/server/services/test_task_run_recorder.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ async def test_handle_client_orchestrated_task_run_event(
client_orchestrated_task_run_event: ReceivedEvent,
caplog: pytest.LogCaptureFixture,
):
with caplog.at_level("INFO"):
with caplog.at_level("DEBUG"):
await task_run_recorder_handler(message(client_orchestrated_task_run_event))

assert "Recorded task run state change" in caplog.text
Expand All @@ -179,7 +179,7 @@ async def test_skip_non_task_run_event(
hello_event: ReceivedEvent,
caplog: pytest.LogCaptureFixture,
):
with caplog.at_level("INFO"):
with caplog.at_level("DEBUG"):
await task_run_recorder_handler(message(hello_event))

assert "Received event" not in caplog.text
Expand Down

0 comments on commit f81541f

Please sign in to comment.