Skip to content

Commit

Permalink
Enable ping verbose output
Browse files Browse the repository at this point in the history
  • Loading branch information
smoelius committed Mar 18, 2024
1 parent 343287d commit d892060
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/cases/ping.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use std::process::{exit, Command, ExitStatus};

fn main() {
let status: ExitStatus = Command::new("ping")
.args(["-c", "1", "127.0.0.1"])
.args(["-c", "1", "-v", "127.0.0.1"])
.status()
.unwrap();
let code = status.code().unwrap();
Expand Down

0 comments on commit d892060

Please sign in to comment.