Skip to content

Commit

Permalink
chore(tests): start using unused test output
Browse files Browse the repository at this point in the history
Resolve a warning of unused `output` variable.

Fixes: 0745019 docs(cli): Create commented config file

Signed-off-by: Paul Spooren <[email protected]>
  • Loading branch information
aparcar authored and koraa committed Dec 18, 2024
1 parent fc2f535 commit 198bc2d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions rosenpass/tests/integration_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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"),
Expand Down

0 comments on commit 198bc2d

Please sign in to comment.