aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auth.rs
diff options
context:
space:
mode:
authorSven-Hendrik Haase <svenstaro@gmail.com>2025-03-07 02:44:55 +0000
committerSven-Hendrik Haase <svenstaro@gmail.com>2025-03-07 02:44:55 +0000
commit9f455e53a4a9311e0beadac6ab808c7e2ab0feca (patch)
treebbd03aaa845509eea9d9610a0660d5cf641749e5 /tests/auth.rs
parentModernize actix-web middleware usage (diff)
downloadminiserve-9f455e53a4a9311e0beadac6ab808c7e2ab0feca.tar.gz
miniserve-9f455e53a4a9311e0beadac6ab808c7e2ab0feca.zip
Reformat everything with Rust 2024 edition
Diffstat (limited to 'tests/auth.rs')
-rw-r--r--tests/auth.rs4
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")]