Skip to content

Commit 1d74c18

Browse files
committed
do we need this?
1 parent 31b868d commit 1d74c18

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

tests/integrations/logging/test_logging.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,6 @@ def test_logging_dictionary_args(sentry_init, capture_events):
288288
assert event["logentry"]["params"] == {"foo": "bar", "bar": "baz"}
289289

290290

291-
@minimum_python_37
292291
def test_sentry_logs_warning(sentry_init, capture_envelopes):
293292
"""
294293
The python logger module should create 'warn' sentry logs if the flag is on.
@@ -314,7 +313,6 @@ def test_sentry_logs_warning(sentry_init, capture_envelopes):
314313
assert logs[0]["severity_text"] == "warn"
315314

316315

317-
@minimum_python_37
318316
def test_sentry_logs_debug(sentry_init, capture_envelopes):
319317
"""
320318
The python logger module should not create 'debug' sentry logs if the flag is on by default
@@ -329,7 +327,6 @@ def test_sentry_logs_debug(sentry_init, capture_envelopes):
329327
assert len(envelopes) == 0
330328

331329

332-
@minimum_python_37
333330
def test_no_log_infinite_loop(sentry_init, capture_envelopes):
334331
"""
335332
If 'debug' mode is true, and you set a low log level in the logging integration, there should be no infinite loops.
@@ -348,7 +345,6 @@ def test_no_log_infinite_loop(sentry_init, capture_envelopes):
348345
assert len(envelopes) == 1
349346

350347

351-
@minimum_python_37
352348
def test_logging_errors(sentry_init, capture_envelopes):
353349
"""
354350
The python logger module should be able to log errors without erroring

0 commit comments

Comments
 (0)