Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@

Here's a trivial example:

```rust,no_run
use assert_cmd::Command;
```rust,no_run,ignore
use assert_cmd::cargo::cargo_bin_cmd;

let mut cmd = Command::cargo_bin("bin_fixture").unwrap();
let mut cmd = cargo_bin_cmd!("bin_fixture").unwrap();
cmd.assert().success();
```

Expand Down