summaryrefslogtreecommitdiff
path: root/t/t3424-rebase-empty.sh
diff options
context:
space:
mode:
Diffstat (limited to 't/t3424-rebase-empty.sh')
-rwxr-xr-xt/t3424-rebase-empty.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/t/t3424-rebase-empty.sh b/t/t3424-rebase-empty.sh
index cfb1ebc1ff..98fc2a558a 100755
--- a/t/t3424-rebase-empty.sh
+++ b/t/t3424-rebase-empty.sh
@@ -34,11 +34,11 @@ test_expect_success 'setup test repository' '
git commit -m "Five letters ought to be enough for anybody"
'
-test_expect_failure 'rebase (am-backend)' '
+test_expect_failure 'rebase (apply-backend)' '
test_when_finished "git rebase --abort" &&
git checkout -B testing localmods &&
- # rebase (--am) should not drop commits that start empty
- git rebase upstream &&
+ # rebase (--apply) should not drop commits that start empty
+ git rebase --apply upstream &&
test_write_lines D C B A >expect &&
git log --format=%s >actual &&