@@ -46,7 +46,7 @@ def test_user_function_can_retrieve_execution_id_from_header():
46
46
47
47
48
48
def test_uncaught_exception_in_user_function_sets_execution_id (capsys , monkeypatch ):
49
- monkeypatch .setenv ("LOG_EXECUTION_ID" , "True " )
49
+ monkeypatch .setenv ("LOG_EXECUTION_ID" , "true " )
50
50
source = TEST_FUNCTIONS_DIR / "execution_id" / "main.py"
51
51
target = "error"
52
52
app = create_app (target , source )
@@ -64,7 +64,7 @@ def test_uncaught_exception_in_user_function_sets_execution_id(capsys, monkeypat
64
64
65
65
66
66
def test_print_from_user_function_sets_execution_id (capsys , monkeypatch ):
67
- monkeypatch .setenv ("LOG_EXECUTION_ID" , "True " )
67
+ monkeypatch .setenv ("LOG_EXECUTION_ID" , "true " )
68
68
source = TEST_FUNCTIONS_DIR / "execution_id" / "main.py"
69
69
target = "print_message"
70
70
app = create_app (target , source )
@@ -83,7 +83,7 @@ def test_print_from_user_function_sets_execution_id(capsys, monkeypatch):
83
83
84
84
85
85
def test_log_from_user_function_sets_execution_id (capsys , monkeypatch ):
86
- monkeypatch .setenv ("LOG_EXECUTION_ID" , "True " )
86
+ monkeypatch .setenv ("LOG_EXECUTION_ID" , "true " )
87
87
source = TEST_FUNCTIONS_DIR / "execution_id" / "main.py"
88
88
target = "log_message"
89
89
app = create_app (target , source )
@@ -321,7 +321,7 @@ def test_log_handler_omits_empty_execution_context(monkeypatch, capsys):
321
321
322
322
@pytest .mark .asyncio
323
323
async def test_maintains_execution_id_for_concurrent_requests (monkeypatch , capsys ):
324
- monkeypatch .setenv ("LOG_EXECUTION_ID" , "True " )
324
+ monkeypatch .setenv ("LOG_EXECUTION_ID" , "true " )
325
325
monkeypatch .setattr (
326
326
execution_id ,
327
327
"_generate_execution_id" ,
0 commit comments