Skip to content

Commit 7e3d6b8

Browse files
committed
fix: simple help test
1 parent cd9f833 commit 7e3d6b8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/cli_tests.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ mod tests {
1919
fn simple_help_print_check() -> Result<()> {
2020
let mut cmd = Command::cargo_bin("morty")?;
2121
cmd.arg("-h");
22-
cmd.assert()
23-
.success()
24-
.stdout(predicate::str::contains("Print version information\n"));
22+
cmd.assert().success().stdout(predicate::str::contains(
23+
"A SystemVerilog source file pickler.\n",
24+
));
2525

2626
Ok(())
2727
}

0 commit comments

Comments
 (0)