Skip to content

Commit

Permalink
t9700: use "git config" without dash
Browse files Browse the repository at this point in the history
Signed-off-by: Nanako Shiraishi <nanako3@lavabit.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Nanako Shiraishi authored and Junio C Hamano committed Sep 10, 2008
1 parent eaa2a6f commit 1f77354
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions t/t9700-perl-git.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ test_expect_success \
echo "changed file 1" > file1 &&
git commit -a -m "second commit" &&
git-config --add color.test.slot1 green &&
git-config --add test.string value &&
git-config --add test.dupstring value1 &&
git-config --add test.dupstring value2 &&
git-config --add test.booltrue true &&
git-config --add test.boolfalse no &&
git-config --add test.boolother other &&
git-config --add test.int 2k
git config --add color.test.slot1 green &&
git config --add test.string value &&
git config --add test.dupstring value1 &&
git config --add test.dupstring value2 &&
git config --add test.booltrue true &&
git config --add test.boolfalse no &&
git config --add test.boolother other &&
git config --add test.int 2k
'

test_external_without_stderr \
Expand Down

0 comments on commit 1f77354

Please sign in to comment.