From f0eb61436e62d0d0d755ac8280bf97b4b52d4e0b Mon Sep 17 00:00:00 2001 From: Sven-Hendrik Haase Date: Thu, 6 Feb 2025 04:30:28 +0100 Subject: Get rid of server_no_stderr We'll now always just pipe the contents of the child to the parent. --- tests/auth_file.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/auth_file.rs') 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()) -- cgit v1.2.3