summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJustin Wernick <justin@worthe-it.co.za>2023-03-12 11:11:41 +0200
committerJustin Wernick <justin@worthe-it.co.za>2023-03-12 11:11:41 +0200
commitde3c59661abe7f38e99ac414bbbf33745434dd31 (patch)
tree980d73acee48fe25350b8f2a90d95c2521779466 /tests
parent6268956e826b477a2f6fecde7d1ab701fffb1f58 (diff)
Added an batch mode
Diffstat (limited to 'tests')
-rw-r--r--tests/cli.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/cli.rs b/tests/cli.rs
index fcd1437..e642781 100644
--- a/tests/cli.rs
+++ b/tests/cli.rs
@@ -106,7 +106,7 @@ fn can_init_a_new_git_repo() -> Result<()> {
#[test]
fn runs_a_single_command_and_exit_with_cli_flag() -> Result<()> {
let mut c = run_batch_command("git-init another-new-repo")?;
- c.p.exp_string("Successfully created my-new-repo.git")?;
+ c.p.exp_string("Successfully created another-new-repo.git")?;
c.p.exp_eof()?;
Ok(())
}