summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2008-07-16 17:49:59 -0700
committerJunio C Hamano <gitster@pobox.com>2008-07-16 17:49:59 -0700
commit1f8dc671557a7330eaee9c0296bfad669d26a1b8 (patch)
tree6d3152f0bf2da873cd29efe3dc962e49034b15d3 /t
parent0513f241cc2d757371dc7ba6b065366de044862e (diff)
parentb4f02d3509e8e4da0f115b9515d52daa02621db7 (diff)
downloadgit-1f8dc671557a7330eaee9c0296bfad669d26a1b8.tar.gz
Merge branch 'mv/dashless'
* mv/dashless: make remove-dashes: apply to scripts and programs as well, not just to builtins git-bisect: use dash-less form on git bisect log t1007-hash-object.sh: use quotes for the test description t0001-init.sh: change confusing directory name
Diffstat (limited to 't')
-rwxr-xr-xt/t0001-init.sh6
-rwxr-xr-xt/t1007-hash-object.sh2
2 files changed, 4 insertions, 4 deletions
diff --git a/t/t0001-init.sh b/t/t0001-init.sh
index d31887f9bf..2a38d98cb4 100755
--- a/t/t0001-init.sh
+++ b/t/t0001-init.sh
@@ -83,11 +83,11 @@ test_expect_success 'init --bare' '
(
unset GIT_DIR GIT_WORK_TREE GIT_CONFIG
- mkdir git-init-bare.git &&
- cd git-init-bare.git &&
+ mkdir init-bare.git &&
+ cd init-bare.git &&
git init --bare
) &&
- check_config git-init-bare.git true unset
+ check_config init-bare.git true unset
'
test_expect_success 'GIT_DIR non-bare' '
diff --git a/t/t1007-hash-object.sh b/t/t1007-hash-object.sh
index 05262954ab..1ec0535138 100755
--- a/t/t1007-hash-object.sh
+++ b/t/t1007-hash-object.sh
@@ -1,6 +1,6 @@
#!/bin/sh
-test_description=git-hash-object
+test_description="git-hash-object"
. ./test-lib.sh