Skip to content

Commit 28ca7e7

Browse files
committed
remove breakpoints
1 parent ba6634d commit 28ca7e7

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

tests/test_scrubber.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,6 @@ def test_stack_var_scrubbing(sentry_init, capture_events):
120120

121121
def test_breadcrumb_extra_scrubbing(sentry_init, capture_events):
122122
sentry_init(max_breadcrumbs=2)
123-
# breakpoint()
124123
events = capture_events()
125124
logger.info("breadcrumb 1", extra=dict(foo=1, password="secret"))
126125
logger.info("breadcrumb 2", extra=dict(bar=2, auth="secret"))

tests/tracing/test_misc.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ def test_span_trimming(sentry_init, capture_events):
4040
def test_span_data_scrubbing_and_trimming(sentry_init, capture_events):
4141
sentry_init(traces_sample_rate=1.0, _experiments={"max_spans": 3})
4242
events = capture_events()
43-
breakpoint()
4443
with start_transaction(name="hi"):
4544
with start_span(op="foo", name="bar") as span:
4645
span.set_data("password", "secret")

0 commit comments

Comments
 (0)