@@ -310,7 +310,7 @@ def test_different_samplers():
310310def test_error_output_ddtracerun_debug_mode ():
311311 p = subprocess .Popen (
312312 ["ddtrace-run" , "python" , "tests/integration/hello.py" ],
313- env = dict (DD_TRACE_AGENT_URL = "http://localhost:8126" , DATADOG_TRACE_DEBUG = "true" , ** os .environ ),
313+ env = dict (DD_TRACE_AGENT_URL = "http://localhost:8126" , DD_TRACE_DEBUG = "true" , ** os .environ ),
314314 stdout = subprocess .PIPE ,
315315 stderr = subprocess .PIPE ,
316316 )
@@ -322,7 +322,7 @@ def test_error_output_ddtracerun_debug_mode():
322322 # No connection to agent, debug mode enabled
323323 p = subprocess .Popen (
324324 ["ddtrace-run" , "python" , "tests/integration/hello.py" ],
325- env = dict (DD_TRACE_AGENT_URL = "http://localhost:4321" , DATADOG_TRACE_DEBUG = "true" , ** os .environ ),
325+ env = dict (DD_TRACE_AGENT_URL = "http://localhost:4321" , DD_TRACE_DEBUG = "true" , ** os .environ ),
326326 stdout = subprocess .PIPE ,
327327 stderr = subprocess .PIPE ,
328328 )
@@ -337,7 +337,7 @@ def test_error_output_ddtracerun():
337337 # Connection to agent, debug mode disabled
338338 p = subprocess .Popen (
339339 ["ddtrace-run" , "python" , "tests/integration/hello.py" ],
340- env = dict (DD_TRACE_AGENT_URL = "http://localhost:8126" , DATADOG_TRACE_DEBUG = "false" , ** os .environ ),
340+ env = dict (DD_TRACE_AGENT_URL = "http://localhost:8126" , DD_TRACE_DEBUG = "false" , ** os .environ ),
341341 stdout = subprocess .PIPE ,
342342 stderr = subprocess .PIPE ,
343343 )
@@ -350,7 +350,7 @@ def test_error_output_ddtracerun():
350350 # No connection to agent, debug mode disabled
351351 p = subprocess .Popen (
352352 ["ddtrace-run" , "python" , "tests/integration/hello.py" ],
353- env = dict (DD_TRACE_AGENT_URL = "http://localhost:4321" , DATADOG_TRACE_DEBUG = "false" , ** os .environ ),
353+ env = dict (DD_TRACE_AGENT_URL = "http://localhost:4321" , DD_TRACE_DEBUG = "false" , ** os .environ ),
354354 stdout = subprocess .PIPE ,
355355 stderr = subprocess .PIPE ,
356356 )
0 commit comments