From: Andrew Kreimer Date: Tue, 22 Oct 2024 11:07:30 +0000 (+0300) Subject: t1016: clean up style X-Git-Tag: v2.48.0-rc0~78^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c348192afee2c6375f1b4e61bcd54c0c126dccfc;p=thirdparty%2Fgit.git t1016: clean up style Use `test_config`. Remove whitespace after redirect operator. Reported-by: Taylor Blau Signed-off-by: Andrew Kreimer Signed-off-by: Taylor Blau --- diff --git a/t/t1016-compatObjectFormat.sh b/t/t1016-compatObjectFormat.sh index 92024fe51d..8341a2fe83 100755 --- a/t/t1016-compatObjectFormat.sh +++ b/t/t1016-compatObjectFormat.sh @@ -116,8 +116,8 @@ do git config core.repositoryformatversion 1 && git config extensions.objectformat $hash && git config extensions.compatobjectformat $(compat_hash $hash) && - git config gpg.program $TEST_DIRECTORY/t1016/gpg && - echo "Hello World!" > hello && + test_config gpg.program $TEST_DIRECTORY/t1016/gpg && + echo "Hello World!" >hello && eval hello_${hash}_oid=$(git hash-object hello) && git update-index --add hello && git commit -m "Initial commit" &&