Skip to content

Commit

Permalink
t1308: fix broken here document in test script
Browse files Browse the repository at this point in the history
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Junio C Hamano committed Oct 13, 2014
1 parent 4c715eb commit dc05179
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions t/t1308-config-set.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -185,7 +185,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
'
Expand Down

0 comments on commit dc05179

Please sign in to comment.