Skip to content

Commit

Permalink
unflake
Browse files Browse the repository at this point in the history
  • Loading branch information
jjbayer committed Aug 2, 2024
1 parent 8361efd commit 915a92e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/integration/test_proxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def test_span_allowed(mini_sentry, relay):
relay.send_envelope(42, envelope)

# Does not raise queue.Empty
envelope = mini_sentry.captured_events.get(timeout=5)
envelope = mini_sentry.captured_events.get(timeout=10)


def test_profile_allowed(mini_sentry, relay):
Expand Down Expand Up @@ -77,7 +77,7 @@ def test_profile_allowed(mini_sentry, relay):
relay.send_envelope(42, envelope)

# Does not raise queue.Empty
envelope = mini_sentry.captured_events.get(timeout=5)
envelope = mini_sentry.captured_events.get(timeout=10)
assert {item.type for item in envelope.items} == {"transaction", "profile"}


Expand All @@ -98,4 +98,4 @@ def test_replay_allowed(mini_sentry, relay):
relay.send_envelope(42, envelope)

# Does not raise queue.Empty
envelope = mini_sentry.captured_events.get(timeout=5)
envelope = mini_sentry.captured_events.get(timeout=10)

0 comments on commit 915a92e

Please sign in to comment.