aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auth_file.rs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--tests/auth_file.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auth_file.rs b/tests/auth_file.rs
index 10a94ed..eb40d2c 100644
--- a/tests/auth_file.rs
+++ b/tests/auth_file.rs
@@ -4,7 +4,7 @@ use select::{document::Document, predicate::Text};
mod fixtures;
-use crate::fixtures::{server, server_no_stderr, Error, FILES};
+use crate::fixtures::{server, Error, FILES};
#[rstest(
cli_auth_file_arg,
@@ -51,7 +51,7 @@ fn auth_file_rejects(
client_username: &str,
client_password: &str,
) -> Result<(), Error> {
- let server = server_no_stderr(&["--auth-file", cli_auth_file_arg]);
+ let server = server(&["--auth-file", cli_auth_file_arg]);
let client = Client::new();
let status = client
.get(server.url())