We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ab6795 commit 0c088a0Copy full SHA for 0c088a0
t/t3418-rebase-continue.sh
@@ -125,14 +125,14 @@ test_expect_success '--continue creates merge commit after empty resolution' '
125
git add main.txt &&
126
test_tick &&
127
git commit --no-edit &&
128
- FAKE_LINES="1 2 3 5 6 7 8 9 10 11" &&
129
- export FAKE_LINES &&
130
- test_must_fail git rebase -ir main &&
+
+ test_must_fail env FAKE_LINES="1 2 3 5 6 7 8 9 10 11" \
+ git rebase -ir main &&
131
echo side1 >main.txt &&
132
133
git rebase --continue &&
134
git log --merges >out &&
135
- test_grep "Merge branch '\''rebase_i_merge_side'\''" out
+ test_grep "Merge branch .rebase_i_merge_side." out
136
'
137
138
test_expect_success '--skip after failed fixup cleans commit message' '
0 commit comments