@@ -435,7 +435,7 @@ def test_set_parent_module_log_level_(caplog: pytest.LogCaptureFixture):
435435
436436
437437@pytest .mark .parametrize ("log_format_local_dev_enabled" , [True , False ])
438- async def test_setup_async_loggers_basic (
438+ def test_setup_async_loggers_basic (
439439 caplog : pytest .LogCaptureFixture ,
440440 log_format_local_dev_enabled : bool ,
441441):
@@ -456,10 +456,9 @@ async def test_setup_async_loggers_basic(
456456 _assert_check_log_message (caplog , "Test async log message" )
457457
458458
459- async def test_setup_async_loggers_with_filters (
459+ def test_setup_async_loggers_with_filters (
460460 caplog : pytest .LogCaptureFixture ,
461461):
462- """Test async logging setup with logger filters."""
463462 caplog .clear ()
464463 caplog .set_level (logging .INFO )
465464
@@ -496,7 +495,7 @@ async def test_setup_async_loggers_with_filters(
496495 assert "This is from unfiltered logger" in caplog .text
497496
498497
499- async def test_setup_async_loggers_with_tracing_settings (
498+ def test_setup_async_loggers_with_tracing_settings (
500499 caplog : pytest .LogCaptureFixture ,
501500):
502501 """Test async logging setup with tracing settings."""
@@ -518,7 +517,7 @@ async def test_setup_async_loggers_with_tracing_settings(
518517 _assert_check_log_message (caplog , "Test message with tracing settings" )
519518
520519
521- async def test_setup_async_loggers_context_manager_cleanup (
520+ def test_setup_async_loggers_context_manager_cleanup (
522521 caplog : pytest .LogCaptureFixture ,
523522):
524523 """Test that async logging context manager properly cleans up."""
@@ -540,7 +539,7 @@ async def test_setup_async_loggers_context_manager_cleanup(
540539 _assert_check_log_message (caplog , "Message during context" )
541540
542541
543- async def test_setup_async_loggers_exception_handling (
542+ def test_setup_async_loggers_exception_handling (
544543 caplog : pytest .LogCaptureFixture ,
545544):
546545 """Test that async logging handles exceptions gracefully."""
0 commit comments