Skip to content

Commit 501a75a

Browse files
felipecgitster
authored andcommitted
t: replace pulls with merges
This is what the code intended. No functional changes. Signed-off-by: Felipe Contreras <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 90f867b commit 501a75a

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

t/annotate-tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ test_expect_success 'blame 2 authors + 1 branch2 author' '
9292
'
9393

9494
test_expect_success 'merge branch1 & branch2' '
95-
git pull . branch1
95+
git merge branch1
9696
'
9797

9898
test_expect_success 'blame 2 authors + 2 merged-in authors' '

t/t4200-rerere.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ test_expect_success 'first postimage wins' '
172172
git show second^:a1 | sed "s/To die: t/To die! T/" >a1 &&
173173
git commit -q -a -m third &&
174174
175-
test_must_fail git pull . first &&
175+
test_must_fail git merge first &&
176176
# rerere kicked in
177177
! grep "^=======\$" a1 &&
178178
test_cmp expect a1

t/t9114-git-svn-dcommit-merge.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ test_expect_success 'setup git mirror and merge' '
6262
echo friend > README &&
6363
cat tmp >> README &&
6464
git commit -a -m "friend" &&
65-
git pull . merge
65+
git merge merge
6666
'
6767

6868
test_debug 'gitk --all & sleep 1'

t/t9500-gitweb-standalone-no-errors.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ test_expect_success \
328328
git add b &&
329329
git commit -a -m "On branch" &&
330330
git checkout master &&
331-
git pull . b &&
331+
git merge b &&
332332
git tag merge_commit'
333333

334334
test_expect_success \

0 commit comments

Comments
 (0)