]> git.droids-corp.org - git-central.git/commitdiff
Take out the extra space when going to a file.
authorStephen Haberman <stephen@exigencecorp.com>
Fri, 20 Jun 2008 01:32:21 +0000 (20:32 -0500)
committerStephen Haberman <stephen@exigencecorp.com>
Fri, 20 Jun 2008 01:32:21 +0000 (20:32 -0500)
tests/t1000-commit-msg-ticket-hook.sh

index ffad6f32d7dda088a41bd28301ef905d30517154..c8b4e9b1421272f19b4e71c8088f0977226f0dc4 100644 (file)
@@ -8,57 +8,57 @@ test_description='client commit-msg ticket enforcer'
 install_client_hook 'commit-msg' 'commit-msg'
 
 test_expect_success 'rejects with bad message' '
-       echo "$test_name" > file &&
+       echo "$test_name" >file &&
        git add file &&
        ! git commit -m "first"
 '
 
 test_expect_success 'rejects with re:' '
-       echo "$test_name" > file &&
+       echo "$test_name" >file &&
        git add file &&
        ! git commit -m "first re: #3200"
 '
 
 test_expect_success 'rejects with re no space' '
-       echo "$test_name" > file &&
+       echo "$test_name" >file &&
        git add file &&
        ! git commit -m "first re#3200"
 '
 
 test_expect_success 'accepts with re' '
-       echo "$test_name" > file &&
+       echo "$test_name" >file &&
        git add file &&
        git commit -m "first re #3200"
 '
 
 test_expect_success 'accepts with re on the second line' '
-       echo "$test_name" > file &&
+       echo "$test_name" >file &&
        git add file &&
-       echo "line one" > msg
-       echo "line two re #3200" >> msg
+       echo "line one" >msg
+       echo "line two re #3200" >>msg
        git commit -F msg
 '
 
 test_expect_success 'accepts with RE' '
-       echo "$test_name" > file &&
+       echo "$test_name" >file &&
        git add file &&
        git commit -m "first RE #3200"
 '
 
 test_expect_success 'accepts with refs' '
-       echo "$test_name" > file &&
+       echo "$test_name" >file &&
        git add file &&
        git commit -m "first refs #3200"
 '
 
 test_expect_success 'accepts with qa' '
-       echo "$test_name" > file &&
+       echo "$test_name" >file &&
        git add file &&
        git commit -m "first qa #3200"
 '
 
 test_expect_success 'accepts with no ticket' '
-       echo "$test_name" > file &&
+       echo "$test_name" >file &&
        git add file &&
        git commit -m "first no ticket"
 '