aboutsummaryrefslogtreecommitdiffstats
path: root/tests/header.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/header.rs
parentRemove some unnecessary #[allow(dead_code)] (diff)
downloadminiserve-4dc634655edac54e9638e8390d89a96e235522c0.tar.gz
miniserve-4dc634655edac54e9638e8390d89a96e235522c0.zip
Reorganize imports to be more consistent
Diffstat (limited to '')
-rw-r--r--tests/header.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/header.rs b/tests/header.rs
index 4ac38b1..ea4c462 100644
--- a/tests/header.rs
+++ b/tests/header.rs
@@ -1,7 +1,8 @@
+use rstest::rstest;
+
mod fixtures;
-use fixtures::{server, Error};
-use rstest::rstest;
+use crate::fixtures::{server, Error};
#[rstest(headers,
case(vec!["x-info: 123".to_string()]),