diff options
author | Sven-Hendrik Haase <svenstaro@gmail.com> | 2025-01-10 16:23:00 +0000 |
---|---|---|
committer | Sven-Hendrik Haase <svenstaro@gmail.com> | 2025-01-10 16:23:00 +0000 |
commit | 4dc634655edac54e9638e8390d89a96e235522c0 (patch) | |
tree | 15f8cc8bdb2046a70a5f7552964f1781dfced72c /tests/header.rs | |
parent | Remove some unnecessary #[allow(dead_code)] (diff) | |
download | miniserve-4dc634655edac54e9638e8390d89a96e235522c0.tar.gz miniserve-4dc634655edac54e9638e8390d89a96e235522c0.zip |
Reorganize imports to be more consistent
Diffstat (limited to 'tests/header.rs')
-rw-r--r-- | tests/header.rs | 5 |
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()]), |