Skip to content

Commit 2926c00

Browse files
committed
cleanup
1 parent 40f2028 commit 2926c00

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/integrations/celery/test_celery.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -510,7 +510,7 @@ def dummy_task(self, x, y):
510510
def test_sentry_propagate_traces_override(init_celery):
511511
"""
512512
Test if the `sentry-propagate-traces` header given to `apply_async`
513-
overrides the `propagate_traces` parameter in the integration constructor.
513+
overrides the default trace propagation behavior.
514514
"""
515515
celery = init_celery(traces_sample_rate=1.0, release="abcdef")
516516

@@ -528,7 +528,7 @@ def dummy_task(self, message):
528528
).get()
529529
assert transaction_trace_id == task_transaction_id
530530

531-
# should NOT propagate trace (overrides `propagate_traces` parameter in integration constructor)
531+
# should NOT propagate trace
532532
task_transaction_id = dummy_task.apply_async(
533533
args=("another message",),
534534
headers={"sentry-propagate-traces": False},

0 commit comments

Comments
 (0)