Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions tests/integrations/aiohttp/test_aiohttp.py
Original file line number Diff line number Diff line change
Expand Up @@ -1145,7 +1145,7 @@ async def test_tracing_span_streaming(
integrations=[AioHttpIntegration()],
traces_sample_rate=1.0,
send_default_pii=send_pii,
_experiments={"trace_lifecycle": "stream"},
trace_lifecycle="stream",
)

async def hello(request):
Expand Down Expand Up @@ -1215,7 +1215,7 @@ async def test_sensitive_header_scrubbing_span_streaming(
sentry_init(
integrations=[AioHttpIntegration()],
traces_sample_rate=1.0,
_experiments={"trace_lifecycle": "stream"},
trace_lifecycle="stream",
)

async def hello(request):
Expand Down Expand Up @@ -1262,7 +1262,7 @@ async def test_sensitive_header_passthrough_with_pii_span_streaming(
integrations=[AioHttpIntegration()],
traces_sample_rate=1.0,
send_default_pii=True,
_experiments={"trace_lifecycle": "stream"},
trace_lifecycle="stream",
)

async def hello(request):
Expand Down Expand Up @@ -1300,7 +1300,7 @@ async def test_url_query_attribute_span_streaming(
integrations=[AioHttpIntegration()],
traces_sample_rate=1.0,
send_default_pii=send_pii,
_experiments={"trace_lifecycle": "stream"},
trace_lifecycle="stream",
)

async def hello(request):
Expand Down Expand Up @@ -1357,7 +1357,7 @@ async def test_transaction_style_span_streaming(
sentry_init(
integrations=[AioHttpIntegration(transaction_style=transaction_style)],
traces_sample_rate=1.0,
_experiments={"trace_lifecycle": "stream"},
trace_lifecycle="stream",
)

async def hello(request):
Expand Down Expand Up @@ -1387,7 +1387,7 @@ async def test_server_error_span_streaming(sentry_init, aiohttp_client, capture_
sentry_init(
integrations=[AioHttpIntegration()],
traces_sample_rate=1.0,
_experiments={"trace_lifecycle": "stream"},
trace_lifecycle="stream",
)

async def hello(request):
Expand Down Expand Up @@ -1428,7 +1428,7 @@ async def test_http_exception_span_streaming(
sentry_init(
integrations=[AioHttpIntegration()],
traces_sample_rate=1.0,
_experiments={"trace_lifecycle": "stream"},
trace_lifecycle="stream",
)

async def hello(request):
Expand Down Expand Up @@ -1460,7 +1460,7 @@ async def test_http_exception_ok_status_not_overridden_span_streaming(
sentry_init(
integrations=[AioHttpIntegration()],
traces_sample_rate=1.0,
_experiments={"trace_lifecycle": "stream"},
trace_lifecycle="stream",
)

async def hello(request):
Expand Down Expand Up @@ -1494,7 +1494,7 @@ async def test_outgoing_client_span_span_streaming(
integrations=[AioHttpIntegration()],
traces_sample_rate=1.0,
send_default_pii=send_pii,
_experiments={"trace_lifecycle": "stream"},
trace_lifecycle="stream",
)

async def handler(request):
Expand Down Expand Up @@ -1555,7 +1555,7 @@ async def test_outgoing_trace_headers_span_streaming(
sentry_init(
integrations=[AioHttpIntegration()],
traces_sample_rate=1.0,
_experiments={"trace_lifecycle": "stream"},
trace_lifecycle="stream",
)

async def handler(request):
Expand Down Expand Up @@ -1589,7 +1589,7 @@ async def test_user_ip_address_on_all_spans(
integrations=[AioHttpIntegration()],
traces_sample_rate=1.0,
send_default_pii=send_default_pii,
_experiments={"trace_lifecycle": "stream"},
trace_lifecycle="stream",
)

async def hello(request):
Expand Down
Loading
Loading