From b601c9e5176a7390dacebfad1be602b1acb8199e Mon Sep 17 00:00:00 2001 From: Tony Xiao Date: Fri, 14 Feb 2025 16:47:43 -0500 Subject: [PATCH] tests(httplib): Fix flakey https test Ideally this test shouldn't even make a request anywhere but this should make it a little more stable. --- tests/integrations/stdlib/test_httplib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integrations/stdlib/test_httplib.py b/tests/integrations/stdlib/test_httplib.py index f2de190de0..227a24336c 100644 --- a/tests/integrations/stdlib/test_httplib.py +++ b/tests/integrations/stdlib/test_httplib.py @@ -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()