aboutsummaryrefslogtreecommitdiff
path: root/t/t4001-diff-rename.sh
diff options
context:
space:
mode:
authorJohannes Schindelin <Johannes.Schindelin@gmx.de>2007-11-15 06:27:57 +0000
committerJunio C Hamano <gitster@pobox.com>2007-11-22 17:05:04 -0800
commit637efc3456576d548ed5b42e70deffca42e7428e (patch)
tree68fa830df95aaa55f38b775f3e001935505de331 /t/t4001-diff-rename.sh
parent1200993a1e885fd67d1a1d63da9d2a0e1ee5bcea (diff)
downloadgit-637efc3456576d548ed5b42e70deffca42e7428e.tar.gz
git-637efc3456576d548ed5b42e70deffca42e7428e.tar.xz
Replace "runstatus" with "status" in the tests
We no longer have "runstatus", but running "status" is no longer that expensive anyway; it is a builtin. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t4001-diff-rename.sh')
-rwxr-xr-xt/t4001-diff-rename.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/t4001-diff-rename.sh b/t/t4001-diff-rename.sh
index 063e79257..877c1ea5d 100755
--- a/t/t4001-diff-rename.sh
+++ b/t/t4001-diff-rename.sh
@@ -71,10 +71,10 @@ test_expect_success 'favour same basenames over different ones' '
git rm path1 &&
mkdir subdir &&
git mv another-path subdir/path1 &&
- git runstatus | grep "renamed: .*path1 -> subdir/path1"'
+ git status | grep "renamed: .*path1 -> subdir/path1"'
test_expect_success 'favour same basenames even with minor differences' '
git show HEAD:path1 | sed "s/15/16/" > subdir/path1 &&
- git runstatus | grep "renamed: .*path1 -> subdir/path1"'
+ git status | grep "renamed: .*path1 -> subdir/path1"'
test_done