summaryrefslogtreecommitdiff
path: root/t/t4116-apply-reverse.sh
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <junkio@cox.net>2006-12-18 15:27:43 -0800
committerLibravatar Junio C Hamano <junkio@cox.net>2006-12-18 16:21:54 -0800
commit74d20040cafdced657efbf49795183d209a3a07b (patch)
tree533dce0336c62e5067983a050cc07e1904e8e6b3 /t/t4116-apply-reverse.sh
parentrerere: fix breakage of resolving. (diff)
downloadtgif-74d20040cafdced657efbf49795183d209a3a07b.tar.xz
fix testsuite: make sure they use templates freshly built from the source
The initial t/trash repository for testing was created properly but over time we gained many tests that create secondary test repositories with init-db or clone and they were not careful enough. This fixes it. Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 't/t4116-apply-reverse.sh')
-rwxr-xr-xt/t4116-apply-reverse.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/t4116-apply-reverse.sh b/t/t4116-apply-reverse.sh
index 74f5c2a575..a79c77af39 100755
--- a/t/t4116-apply-reverse.sh
+++ b/t/t4116-apply-reverse.sh
@@ -50,12 +50,12 @@ test_expect_success 'setup separate repository lacking postimage' '
git tar-tree initial initial | tar xf - &&
(
- cd initial && git init-db && git add .
+ cd initial && git_init_db && git add .
) &&
git tar-tree second second | tar xf - &&
(
- cd second && git init-db && git add .
+ cd second && git_init_db && git add .
)
'