Skip to content

Commit

Permalink
rust fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
jqnatividad committed Aug 30, 2022
1 parent 3d8320f commit bddecd9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_apply.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1038,7 +1038,9 @@ fn apply_datefmt_multiple_cols() {
],
);
let mut cmd = wrk.command("apply");
cmd.arg("datefmt").arg("Created Date,End Date").arg("data.csv");
cmd.arg("datefmt")
.arg("Created Date,End Date")
.arg("data.csv");

let got: Vec<Vec<String>> = wrk.read_stdout(&mut cmd);
let expected = vec![
Expand Down

0 comments on commit bddecd9

Please sign in to comment.