cgit

commit 7966fd9b8e32562196b52abd32f6ba1e15228b81

Author: John Keeping <john@keeping.me.uk>

t0109: "function" is a bash-ism

We try to stick to POSIX shell in the tests but a "function" keyword has
found its way into t0109.  Remove it.

This makes the tests work with dash again.

Signed-off-by: John Keeping <john@keeping.me.uk>

 tests/t0109-gitconfig.sh | 2 +-


diff --git a/tests/t0109-gitconfig.sh b/tests/t0109-gitconfig.sh
index c9d16a258aee945dc53077489d1c67a221f95630..5a842581069f988dd796e378f0535ea07a44a290 100755
--- a/tests/t0109-gitconfig.sh
+++ b/tests/t0109-gitconfig.sh
@@ -22,7 +22,7 @@ 		-e access -f -o strace.out cgit &&
 	test_must_fail grep "$non_existant_path" strace.out
 }
 
-function test_no_home_access_success() {
+test_no_home_access_success() {
 	test_expect_success "do not access \$HOME: $1" "
 		test_no_home_access '$1'
 	"