Skip to content

Commit

Permalink
w: add debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
cakebaker committed May 14, 2024
1 parent 9a68d92 commit 3bec2d3
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tests/by-util/test_w.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ fn test_option_short() {
let cmd = new_ucmd!().arg("--short").succeeds();

let cmd_output = cmd.stdout_str();
println!("output: {cmd_output}");
let cmd_output_lines: Vec<&str> = cmd_output.split('\n').collect();
let line_output_header = cmd_output_lines[0];
let line_output_data_words: Vec<&str> = cmd_output_lines[1].split('\t').collect();
Expand Down

0 comments on commit 3bec2d3

Please sign in to comment.