From 090391a12c423852b75a0ee62947ae67e8087bb7 Mon Sep 17 00:00:00 2001 From: Itamar Oren Date: Mon, 24 Jun 2024 06:18:46 -0700 Subject: [PATCH] gh-120373: Mark test_audit.test_http as requiring the network resource (GH-120374) (cherry picked from commit b0e1c51882e3a129d1e4db8291f7a0d869d6f1d6) Co-authored-by: Itamar Oren --- Lib/test/test_audit.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Lib/test/test_audit.py b/Lib/test/test_audit.py index 9e3e03748da14d..9076448ccfd45f 100644 --- a/Lib/test/test_audit.py +++ b/Lib/test/test_audit.py @@ -140,6 +140,7 @@ def test_gc(self): ) + @support.requires_resource('network') def test_http(self): import_helper.import_module("http.client") returncode, events, stderr = self.run_python("test_http_client")