Skip to content

Commit 9cd05a5

Browse files
committed
cleanup
1 parent 7afdfce commit 9cd05a5

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

tests/tracing/test_trace_propagation.py

+8-8
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,13 @@ def mock_putheader_fn(self, header, value):
5252
1.0,
5353
],
5454
ids=[
55-
"default traces_sample_rate",
55+
"traces_sample_rate=DEFAULT",
5656
"traces_sample_rate=None",
5757
"traces_sample_rate=0",
5858
"traces_sample_rate=1",
5959
],
6060
)
61-
def test_trace_propagation_no_incoming_trace(
61+
def test_no_incoming_trace_and_trace_targets_matching(
6262
sentry_init, capture_events, _mock_putheader, traces_sample_rate
6363
):
6464
init_kwargs = {}
@@ -101,13 +101,13 @@ def test_trace_propagation_no_incoming_trace(
101101
1.0,
102102
],
103103
ids=[
104-
"default traces_sample_rate",
104+
"traces_sample_rate=DEFAULT",
105105
"traces_sample_rate=None",
106106
"traces_sample_rate=0",
107107
"traces_sample_rate=1",
108108
],
109109
)
110-
def test_trace_propagation_with_incoming_trace(
110+
def test_with_incoming_trace_and_trace_targets_matching(
111111
sentry_init, capture_events, _mock_putheader, traces_sample_rate
112112
):
113113
init_kwargs = {}
@@ -153,13 +153,13 @@ def test_trace_propagation_with_incoming_trace(
153153
1.0,
154154
],
155155
ids=[
156-
"default traces_sample_rate",
156+
"traces_sample_rate=DEFAULT",
157157
"traces_sample_rate=None",
158158
"traces_sample_rate=0",
159159
"traces_sample_rate=1",
160160
],
161161
)
162-
def test_trace_propagation_no_incoming_trace_and_targets_not_matching(
162+
def test_no_incoming_trace_and_trace_targets_not_matching(
163163
sentry_init, capture_events, _mock_putheader, traces_sample_rate
164164
):
165165
init_kwargs = {
@@ -204,13 +204,13 @@ def test_trace_propagation_no_incoming_trace_and_targets_not_matching(
204204
1.0,
205205
],
206206
ids=[
207-
"default traces_sample_rate",
207+
"traces_sample_rate=DEFAULT",
208208
"traces_sample_rate=None",
209209
"traces_sample_rate=0",
210210
"traces_sample_rate=1",
211211
],
212212
)
213-
def test_trace_propagation_with_incoming_trace_and_targets_not_matching(
213+
def test_with_incoming_trace_and_trace_targets_not_matching(
214214
sentry_init, capture_events, _mock_putheader, traces_sample_rate
215215
):
216216
init_kwargs = {

0 commit comments

Comments
 (0)