From 198bc2d5f2609107d4103f5f96c87a3055159796 Mon Sep 17 00:00:00 2001 From: Paul Spooren Date: Mon, 16 Dec 2024 11:42:01 +0100 Subject: [PATCH] chore(tests): start using unused test output Resolve a warning of unused `output` variable. Fixes: 0745019 docs(cli): Create commented config file Signed-off-by: Paul Spooren --- rosenpass/tests/integration_test.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/rosenpass/tests/integration_test.rs b/rosenpass/tests/integration_test.rs index f3ba98b..67ddc78 100644 --- a/rosenpass/tests/integration_test.rs +++ b/rosenpass/tests/integration_test.rs @@ -160,6 +160,9 @@ fn check_example_config() { .output() .expect("EXAMPLE_CONFIG not valid"); + let stderr = String::from_utf8_lossy(&output.stderr); + assert_eq!(stderr, ""); + fs::copy( tmp_dir.path().join("rp-public-key"), tmp_dir.path().join("rp-peer-public-key"),