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/raw.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/raw.rs')
-rw-r--r-- | tests/raw.rs | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/tests/raw.rs b/tests/raw.rs index 95100d2..0017bae 100644 --- a/tests/raw.rs +++ b/tests/raw.rs @@ -1,14 +1,14 @@ -mod fixtures; -mod utils; - -use crate::fixtures::TestServer; -use fixtures::{server, Error}; use pretty_assertions::assert_eq; use reqwest::blocking::Client; use rstest::rstest; -use select::document::Document; -use select::predicate::Class; -use select::predicate::Name; +use select::{ + document::Document, + predicate::{Class, Name}, +}; + +mod fixtures; + +use crate::fixtures::{server, Error, TestServer}; /// The footer displays the correct wget command to download the folder recursively // This test can't test all aspects of the wget footer, |