upleb.uk

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

summaryrefslogtreecommitdiff
path: root/tests/ngit
diff options
context:
space:
mode:
authorDanConwayDev <DanConwayDev@protonmail.com>2024-09-11 12:52:46 +0100
committerDanConwayDev <DanConwayDev@protonmail.com>2024-09-11 13:05:57 +0100
commitdf1660b1b78b5881c64c6fadd4ae12c8c01c6684 (patch)
tree044bcfc85d3cffe3ede73e1285cacaf30aaa981d /tests/ngit
parentdb17699af4b0ec839b8340766aab91bacf974cd4 (diff)
refactor: fix fmt and clippy issues
which potentially were only identified when a dependancy was updated
Diffstat (limited to 'tests/ngit')
-rw-r--r--tests/ngit/list.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/ngit/list.rs b/tests/ngit/list.rs
index c145fa4..26cf717 100644
--- a/tests/ngit/list.rs
+++ b/tests/ngit/list.rs
@@ -196,7 +196,7 @@ mod when_main_branch_is_uptodate {
196 ], 196 ],
197 )?; 197 )?;
198 c.succeeds_with(0, false, None)?; 198 c.succeeds_with(0, false, None)?;
199 p.expect(&format!( 199 p.expect(format!(
200 "checked out proposal as 'pr/{}(", 200 "checked out proposal as 'pr/{}(",
201 FEATURE_BRANCH_NAME_1, 201 FEATURE_BRANCH_NAME_1,
202 ))?; 202 ))?;
@@ -318,7 +318,7 @@ mod when_main_branch_is_uptodate {
318 ], 318 ],
319 )?; 319 )?;
320 c.succeeds_with(0, false, Some(0))?; 320 c.succeeds_with(0, false, Some(0))?;
321 p.expect(&format!( 321 p.expect(format!(
322 "checked out proposal as 'pr/{}(", 322 "checked out proposal as 'pr/{}(",
323 FEATURE_BRANCH_NAME_3, 323 FEATURE_BRANCH_NAME_3,
324 ))?; 324 ))?;
@@ -525,7 +525,7 @@ mod when_main_branch_is_uptodate {
525 ], 525 ],
526 )?; 526 )?;
527 c.succeeds_with(0, false, Some(0))?; 527 c.succeeds_with(0, false, Some(0))?;
528 p.expect(&format!( 528 p.expect(format!(
529 "checked out proposal as 'pr/{}(", 529 "checked out proposal as 'pr/{}(",
530 FEATURE_BRANCH_NAME_4, 530 FEATURE_BRANCH_NAME_4,
531 ))?; 531 ))?;
@@ -772,7 +772,7 @@ mod when_main_branch_is_uptodate {
772 ], 772 ],
773 )?; 773 )?;
774 c.succeeds_with(0, false, Some(0))?; 774 c.succeeds_with(0, false, Some(0))?;
775 p.expect(&format!( 775 p.expect(format!(
776 "checked out proposal as 'pr/{}(", 776 "checked out proposal as 'pr/{}(",
777 FEATURE_BRANCH_NAME_1, 777 FEATURE_BRANCH_NAME_1,
778 ))?; 778 ))?;