mirror of
https://github.com/martinvonz/jj.git
synced 2025-01-12 23:23:20 +00:00
tests: fix smoke test broken by bad23cda74
I apparently didn't run tests on that commit :(
This commit is contained in:
parent
bea399640b
commit
49d386931d
1 changed files with 1 additions and 1 deletions
|
@ -87,7 +87,7 @@ fn smoke_test() {
|
||||||
|
|
||||||
// Add a commit description
|
// Add a commit description
|
||||||
let output =
|
let output =
|
||||||
testutils::CommandRunner::new(&repo_path).run(vec!["describe", "--text", "add some files"]);
|
testutils::CommandRunner::new(&repo_path).run(vec!["describe", "-m", "add some files"]);
|
||||||
assert_eq!(output.status, 0);
|
assert_eq!(output.status, 0);
|
||||||
let stdout_string = output.stdout_string();
|
let stdout_string = output.stdout_string();
|
||||||
let output_regex =
|
let output_regex =
|
||||||
|
|
Loading…
Reference in a new issue