diff options
author | Oswald Buddenhagen <oswald.buddenhagen@gmx.de> | 2023-08-13 12:46:49 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2023-08-14 01:32:28 +0200 |
commit | b46d806ea5649599df6ed2deb83dfa69330985cf (patch) | |
tree | 36a04bd6c79ceca916ae09420441a8e1c9934423 /t/t9001-send-email.sh | |
parent | Git 2.40.1 (diff) | |
download | git-b46d806ea5649599df6ed2deb83dfa69330985cf.tar.xz git-b46d806ea5649599df6ed2deb83dfa69330985cf.zip |
t9001: fix indentation in test_no_confirm()
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>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t9001-send-email.sh')
-rwxr-xr-x | t/t9001-send-email.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/t9001-send-email.sh b/t/t9001-send-email.sh index 323952a572..8b05a602b2 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 |