One of the tests used to fail due to EOF not in the first column and not
continued &&.
Signed-off-by: Kacper Kornet <redacted>
---
t/t3701-add-interactive.sh | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/t/t3701-add-interactive.sh b/t/t3701-add-interactive.sh
index d6327e7..018f5d9 100755
--- a/t/t3701-add-interactive.sh
+++ b/t/t3701-add-interactive.sh
@@ -83,9 +83,9 @@ EOF
test_expect_success PERL 'setup fake editor' '
cat >fake_editor.sh <<EOF
- EOF
+EOF
chmod a+x fake_editor.sh &&
- test_set_editor "$(pwd)/fake_editor.sh" &&
+ test_set_editor "$(pwd)/fake_editor.sh"
'
test_expect_success PERL 'dummy edit works' '
--
1.7.5
--
Kacper Kornet