diff mbox series

[v2] t9001: fix indentation in test_no_confirm()

Message ID 20230813104649.2919412-1-oswald.buddenhagen@gmx.de (mailing list archive)
State Accepted
Commit b46d806ea5649599df6ed2deb83dfa69330985cf
Headers show
Series [v2] t9001: fix indentation in test_no_confirm() | expand

Commit Message

Oswald Buddenhagen Aug. 13, 2023, 10:46 a.m. UTC
The continuations of the compound command were indented as if they were
continuations of the embedded pipe, which was misleading.

Signed-off-by: Oswald Buddenhagen <oswald.buddenhagen@gmx.de>

---
v2:
- reduced to what seems to be welcome.
  fwiw, this is actually v0.

Cc: Junio C Hamano <gitster@pobox.com>
---
 t/t9001-send-email.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/t/t9001-send-email.sh b/t/t9001-send-email.sh
index 48bf0af2ee..542f524f04 100755
--- a/t/t9001-send-email.sh
+++ b/t/t9001-send-email.sh
@@ -61,8 +61,8 @@  test_no_confirm () {
 		--smtp-server="$(pwd)/fake.sendmail" \
 		$@ \
 		$patches >stdout &&
-		! grep "Send this email" stdout &&
-		>no_confirm_okay
+	! grep "Send this email" stdout &&
+	>no_confirm_okay
 }
 
 # Exit immediately to prevent hang if a no-confirm test fails