diff options
Diffstat (limited to 'tests/auth.rs')
-rw-r--r-- | tests/auth.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auth.rs b/tests/auth.rs index efa7827..5227b49 100644 --- a/tests/auth.rs +++ b/tests/auth.rs @@ -1,11 +1,11 @@ use pretty_assertions::assert_eq; -use reqwest::{blocking::Client, StatusCode}; +use reqwest::{StatusCode, blocking::Client}; use rstest::rstest; use select::{document::Document, predicate::Text}; mod fixtures; -use crate::fixtures::{server, Error, FILES}; +use crate::fixtures::{Error, FILES, server}; #[rstest] #[case("testuser:testpassword", "testuser", "testpassword")] |