Skip to content

Commit

Permalink
Format code
Browse files Browse the repository at this point in the history
  • Loading branch information
tbsklg committed Oct 7, 2024
1 parent 4a0ec3c commit 092f494
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cli-client/tests/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -144,9 +144,9 @@ fn it_should_reject_usernames_longer_than_20_characters() -> Result<(), Box<dyn
fn it_should_show_help_if_no_subcommand_is_given() -> Result<(), Box<dyn std::error::Error>> {
let mut cmd = Command::cargo_bin("strikes")?;

cmd.assert().failure().stderr(predicate::str::contains(
"Track and assign strikes",
));
cmd.assert()
.failure()
.stderr(predicate::str::contains("Track and assign strikes"));

Ok(())
}

0 comments on commit 092f494

Please sign in to comment.