aboutsummaryrefslogtreecommitdiffstats
path: root/tests/archive.rs
diff options
context:
space:
mode:
authorSven-Hendrik Haase <svenstaro@gmail.com>2025-01-10 16:23:00 +0000
committerSven-Hendrik Haase <svenstaro@gmail.com>2025-01-10 16:23:00 +0000
commit4dc634655edac54e9638e8390d89a96e235522c0 (patch)
tree15f8cc8bdb2046a70a5f7552964f1781dfced72c /tests/archive.rs
parentRemove some unnecessary #[allow(dead_code)] (diff)
downloadminiserve-4dc634655edac54e9638e8390d89a96e235522c0.tar.gz
miniserve-4dc634655edac54e9638e8390d89a96e235522c0.zip
Reorganize imports to be more consistent
Diffstat (limited to 'tests/archive.rs')
-rw-r--r--tests/archive.rs12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/archive.rs b/tests/archive.rs
index e6d0263..5f34ade 100644
--- a/tests/archive.rs
+++ b/tests/archive.rs
@@ -1,10 +1,10 @@
-mod fixtures;
-
-use fixtures::{server, Error, TestServer};
-use reqwest::StatusCode;
+use reqwest::StatusCode;
use rstest::rstest;
-use select::document::Document;
-use select::predicate::Text;
+use select::{document::Document, predicate::Text};
+
+mod fixtures;
+
+use crate::fixtures::{server, Error, TestServer};
#[rstest]
fn archives_are_disabled(server: TestServer) -> Result<(), Error> {