upleb.uk

Public git repos — served from a NIP-34 GRASP relay at git.upleb.uk

summaryrefslogtreecommitdiff
path: root/tests/ngit_pull.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ngit_pull.rs')
-rw-r--r--tests/ngit_pull.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/ngit_pull.rs b/tests/ngit_pull.rs
index 6637859..2fb9229 100644
--- a/tests/ngit_pull.rs
+++ b/tests/ngit_pull.rs
@@ -96,7 +96,9 @@ mod when_branch_doesnt_exist {
96 let mut p = CliTester::new_from_dir(&test_repo.dir, ["pull"]); 96 let mut p = CliTester::new_from_dir(&test_repo.dir, ["pull"]);
97 p.expect("fetching updates...\r\n")?; 97 p.expect("fetching updates...\r\n")?;
98 p.expect_eventually("\r\n")?; // some updates listed here 98 p.expect_eventually("\r\n")?; // some updates listed here
99 p.expect("Error: cannot find proposal that matches the current branch name\r\n")?; 99 p.expect(
100 "Error: failed to find proposal that matches the current branch name\r\n",
101 )?;
100 102
101 p.expect_end()?; 103 p.expect_end()?;
102 104