From de2266874846f2dc299335d20bf8cfcb3707bf67 Mon Sep 17 00:00:00 2001 From: Josh Matthews Date: Thu, 27 May 2021 00:07:13 -0400 Subject: [PATCH] Disable all http_loader unit tests on windows. --- components/net/tests/http_loader.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/components/net/tests/http_loader.rs b/components/net/tests/http_loader.rs index 4490de73091..e9de2cb983f 100644 --- a/components/net/tests/http_loader.rs +++ b/components/net/tests/http_loader.rs @@ -2,6 +2,8 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ +#![cfg(not(target_os = "windows"))] + use crate::fetch; use crate::fetch_with_context; use crate::make_server;