Skip to content

Commit

Permalink
Bumping skipped version
Browse files Browse the repository at this point in the history
  • Loading branch information
antonpirker committed Sep 13, 2024
1 parent 2136871 commit c39f042
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/integrations/starlette/test_starlette.py
Original file line number Diff line number Diff line change
Expand Up @@ -1204,8 +1204,8 @@ async def _error(request):


@pytest.mark.skipif(
STARLETTE_VERSION < (0, 20),
reason="Requires Starlette >= 0.20, because earlier versions do not support HTTP 'HEAD' requests",
STARLETTE_VERSION < (0, 21),
reason="Requires Starlette >= 0.21, because earlier versions do not support HTTP 'HEAD' requests",
)
def test_transaction_http_method_default(sentry_init, capture_events):
"""
Expand Down Expand Up @@ -1234,8 +1234,8 @@ def test_transaction_http_method_default(sentry_init, capture_events):


@pytest.mark.skipif(
STARLETTE_VERSION < (0, 20),
reason="Requires Starlette >= 0.20, because earlier versions do not support HTTP 'HEAD' requests",
STARLETTE_VERSION < (0, 21),
reason="Requires Starlette >= 0.21, because earlier versions do not support HTTP 'HEAD' requests",
)
def test_transaction_http_method_custom(sentry_init, capture_events):
sentry_init(
Expand Down

0 comments on commit c39f042

Please sign in to comment.