File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -81,16 +81,16 @@ test_expect_success 'format-patch --ignore-if-in-upstream handles tags' '
81
81
'
82
82
83
83
test_expect_success " format-patch doesn't consider merge commits" '
84
- git checkout -b slave master &&
84
+ git checkout -b feature master &&
85
85
echo "Another line" >>file &&
86
86
test_tick &&
87
- git commit -am "Slave change #1" &&
87
+ git commit -am "Feature branch change #1" &&
88
88
echo "Yet another line" >>file &&
89
89
test_tick &&
90
- git commit -am "Slave change #2" &&
90
+ git commit -am "Feature branch change #2" &&
91
91
git checkout -b merger master &&
92
92
test_tick &&
93
- git merge --no-ff slave &&
93
+ git merge --no-ff feature &&
94
94
git format-patch -3 --stdout >patch &&
95
95
grep "^From " patch >from &&
96
96
test_line_count = 3 from
You can’t perform that action at this time.
0 commit comments