Skip to content

Commit

Permalink
remove duplicate addition of args in invalid config test
Browse files Browse the repository at this point in the history
  • Loading branch information
samkim-crypto committed Mar 11, 2024
1 parent 598abb8 commit 3da1fc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion token/cli/tests/config.rs
Expand Up @@ -7,5 +7,5 @@ fn invalid_config_will_cause_commands_to_fail() {
cmd.args(args)
.assert()
.stderr("error: Could not find config file `~/nonexistent/config.yml`\n");
cmd.args(args).assert().code(1).failure();
cmd.assert().code(1).failure();
}

0 comments on commit 3da1fc2

Please sign in to comment.