Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2014-10-20 23:23:42 +0400
committerJunio C Hamano <gitster@pobox.com>2014-10-20 23:23:43 +0400
commit713ee7fe46dce859e46dbb255498ff79cdfb7fba (patch)
tree35d6e0b06d42b772f7fb1920d79bed8afedae504 /t/t1308-config-set.sh
parentf9a2fd36169f04f65a71269b9eef47bfe98e8c8f (diff)
parentdc05179b5a8a6dcc9a25de461d43fb5edfc93c46 (diff)
Merge branch 'ta/config-set'
* ta/config-set: t1308: fix broken here document in test script
Diffstat (limited to 't/t1308-config-set.sh')
-rwxr-xr-xt/t1308-config-set.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/t1308-config-set.sh b/t/t1308-config-set.sh
index ea0bce2dc6..91235b76ba 100755
--- a/t/t1308-config-set.sh
+++ b/t/t1308-config-set.sh
@@ -23,7 +23,7 @@ check_config () {
}
test_expect_success 'setup default config' '
- cat >.git/config <<\EOF
+ cat >.git/config <<-\EOF
[case]
penguin = very blue
Movie = BadPhysics
@@ -195,7 +195,7 @@ test_expect_success 'proper error on error in default config files' '
cp .git/config .git/config.old &&
test_when_finished "mv .git/config.old .git/config" &&
echo "[" >>.git/config &&
- echo "fatal: bad config file line 35 in .git/config" >expect &&
+ echo "fatal: bad config file line 34 in .git/config" >expect &&
test_expect_code 128 test-config get_value foo.bar 2>actual &&
test_cmp expect actual
'