aboutsummaryrefslogtreecommitdiffstats
path: root/components/net/tests
diff options
context:
space:
mode:
authorJosh Matthews <josh@joshmatthews.net>2021-05-27 21:48:31 -0400
committerGitHub <noreply@github.com>2021-05-27 21:48:31 -0400
commit8583e505c8a69e4fac5537d6cf80b036d80a6597 (patch)
treefc63695a872d88ef3cfda957d4750afebb1b06d1 /components/net/tests
parent46de44340f6ac924b8ea1646f522b3f7e278cbaf (diff)
downloadservo-8583e505c8a69e4fac5537d6cf80b036d80a6597.tar.gz
servo-8583e505c8a69e4fac5537d6cf80b036d80a6597.zip
Don't error on unused imports.
Diffstat (limited to 'components/net/tests')
-rw-r--r--components/net/tests/fetch.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/components/net/tests/fetch.rs b/components/net/tests/fetch.rs
index 4f6cf6e272e..74c398fe12a 100644
--- a/components/net/tests/fetch.rs
+++ b/components/net/tests/fetch.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/. */
+#![allow(unused_imports)]
+
use crate::fetch_with_context;
use crate::fetch_with_cors_cache;
#[cfg(not(target_os = "windows"))]