Skip to content

Commit 75398f9

Browse files
committed
Fix merge
1 parent c5d9509 commit 75398f9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_gevent.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from datetime import datetime, timezone
44

55
import sentry_sdk
6-
from sentry_sdk._compat import PY37, PY38
6+
from sentry_sdk._compat import PY38
77

88
import pytest
99
from tests.conftest import CapturingServer
@@ -50,7 +50,7 @@ def inner(**kwargs):
5050
@pytest.mark.parametrize("compression_level", (0, 9, None))
5151
@pytest.mark.parametrize(
5252
"compression_algo",
53-
(("gzip", "br", "<invalid>", None) if PY37 else ("gzip", "<invalid>", None)),
53+
("gzip", "br", "<invalid>", None),
5454
)
5555
@pytest.mark.parametrize("http2", [True, False] if PY38 else [False])
5656
def test_transport_works_gevent(

0 commit comments

Comments
 (0)