Skip to content

Commit 539b1cd

Browse files
logic error
1 parent ad1d00f commit 539b1cd

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/integrations/litestar/test_litestar.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -848,7 +848,7 @@ def test_request_url(sentry_init, capture_events, capture_items, span_streaming)
848848
items = capture_items("span")
849849

850850
# https://github.com/litestar-org/litestar/commit/72dda171768bd470adc065c47c1ecf1d80b5e749
851-
url = "/root/nomessage" if LITESTAR_VERSION > (2, 5, 3) else "/nomessage"
851+
url = "/root/nomessage" if LITESTAR_VERSION >= (2, 5, 3) else "/nomessage"
852852
client.get(url)
853853

854854
sentry_sdk.flush()
@@ -866,7 +866,7 @@ def test_request_url(sentry_init, capture_events, capture_items, span_streaming)
866866
events = capture_events()
867867

868868
# https://github.com/litestar-org/litestar/commit/72dda171768bd470adc065c47c1ecf1d80b5e749
869-
url = "/root/nomessage" if LITESTAR_VERSION > (2, 5, 3) else "/nomessage"
869+
url = "/root/nomessage" if LITESTAR_VERSION >= (2, 5, 3) else "/nomessage"
870870
client.get(url)
871871

872872
(event,) = events

0 commit comments

Comments
 (0)