Skip to content

Commit

Permalink
tests(httplib): Fix flakey https test (#4057)
Browse files Browse the repository at this point in the history
  • Loading branch information
Zylphrex authored Feb 17, 2025
1 parent ae68d85 commit 6a1b7d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integrations/stdlib/test_httplib.py
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ def test_span_origin(sentry_init, capture_events):
events = capture_events()

with start_transaction(name="foo"):
conn = HTTPSConnection("example.com")
conn = HTTPConnection("example.com")
conn.request("GET", "/foo")
conn.getresponse()

Expand Down

0 comments on commit 6a1b7d4

Please sign in to comment.