mirror of
https://github.com/open-telemetry/opentelemetry-python-contrib.git
synced 2025-07-29 13:12:39 +08:00
7 lines
210 B
Python
7 lines
210 B
Python
from ddtrace.propagation.utils import get_wsgi_header
|
|
|
|
|
|
class TestPropagationUtils(object):
|
|
def test_get_wsgi_header(self):
|
|
assert get_wsgi_header('x-datadog-trace-id') == 'HTTP_X_DATADOG_TRACE_ID'
|