diff options
| author | DanConwayDev <DanConwayDev@protonmail.com> | 2025-11-11 07:21:08 +0000 |
|---|---|---|
| committer | DanConwayDev <DanConwayDev@protonmail.com> | 2025-11-13 14:40:09 +0000 |
| commit | 52370f542dad87ab029a5d701cc46658d5aef91b (patch) | |
| tree | fb7f6283850f528aaeca8aec606dd5bd41906d9a /tests/git_remote_nostr/push.rs | |
| parent | be1a8e53383dc495ede773a76131fad81f04d101 (diff) | |
fix: cli output line deletion during fetch
also reduce the clutter in the cli output for grasp servers.
Diffstat (limited to 'tests/git_remote_nostr/push.rs')
| -rw-r--r-- | tests/git_remote_nostr/push.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/git_remote_nostr/push.rs b/tests/git_remote_nostr/push.rs index 91a20d8..647a2f3 100644 --- a/tests/git_remote_nostr/push.rs +++ b/tests/git_remote_nostr/push.rs | |||
| @@ -1385,7 +1385,7 @@ async fn push_2_commits_to_existing_proposal() -> Result<()> { | |||
| 1385 | let mut p = CliTester::new_git_with_remote_helper_from_dir(&git_repo.dir, ["push"]); | 1385 | let mut p = CliTester::new_git_with_remote_helper_from_dir(&git_repo.dir, ["push"]); |
| 1386 | cli_expect_nostr_fetch(&mut p)?; | 1386 | cli_expect_nostr_fetch(&mut p)?; |
| 1387 | p.expect(format!("fetching {source_path} ref list over filesystem...\r\n").as_str())?; | 1387 | p.expect(format!("fetching {source_path} ref list over filesystem...\r\n").as_str())?; |
| 1388 | p.expect("list: connecting...\r\n\r\r\r")?; | 1388 | p.expect("list: connecting...\r\n\r")?; |
| 1389 | p.expect_eventually_and_print(format!("To {}\r\n", get_nostr_remote_url()?).as_str())?; | 1389 | p.expect_eventually_and_print(format!("To {}\r\n", get_nostr_remote_url()?).as_str())?; |
| 1390 | let output = p.expect_end_eventually()?; | 1390 | let output = p.expect_end_eventually()?; |
| 1391 | 1391 | ||
| @@ -1694,7 +1694,7 @@ async fn push_new_pr_branch_creates_proposal() -> Result<()> { | |||
| 1694 | ); | 1694 | ); |
| 1695 | cli_expect_nostr_fetch(&mut p)?; | 1695 | cli_expect_nostr_fetch(&mut p)?; |
| 1696 | p.expect(format!("fetching {source_path} ref list over filesystem...\r\n").as_str())?; | 1696 | p.expect(format!("fetching {source_path} ref list over filesystem...\r\n").as_str())?; |
| 1697 | p.expect("list: connecting...\r\n\r\r\r")?; | 1697 | p.expect("list: connecting...\r\n\r")?; |
| 1698 | p.expect_eventually_and_print(format!("To {}\r\n", get_nostr_remote_url()?).as_str())?; | 1698 | p.expect_eventually_and_print(format!("To {}\r\n", get_nostr_remote_url()?).as_str())?; |
| 1699 | let output = p.expect_end_eventually()?; | 1699 | let output = p.expect_end_eventually()?; |
| 1700 | 1700 | ||