Skip to content

Commit 1ab7e00

Browse files
felipecgitster
authored andcommitted
tests: lib-functions: trivial style cleanups
Signed-off-by: Felipe Contreras <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent b64b43d commit 1ab7e00

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

t/test-lib-functions.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -955,7 +955,7 @@ test_expect_code () {
955955
# - cmp's output is not nearly as easy to read as diff -u
956956
# - not all diff versions understand "-u"
957957

958-
test_cmp() {
958+
test_cmp () {
959959
eval "$GIT_TEST_CMP" '"$@"'
960960
}
961961

@@ -968,7 +968,7 @@ test_cmp() {
968968
#
969969
# test_cmp_config foo core.bar
970970
#
971-
test_cmp_config() {
971+
test_cmp_config () {
972972
local GD &&
973973
if test "$1" = "-C"
974974
then
@@ -984,7 +984,7 @@ test_cmp_config() {
984984

985985
# test_cmp_bin - helper to compare binary files
986986

987-
test_cmp_bin() {
987+
test_cmp_bin () {
988988
cmp "$@"
989989
}
990990

@@ -1418,7 +1418,7 @@ nongit () {
14181418
# whitespace and put in a single packet. Note that data containing NULs must be
14191419
# given on stdin, and that empty input becomes an empty packet, not a flush
14201420
# packet (for that you can just print 0000 yourself).
1421-
packetize() {
1421+
packetize () {
14221422
if test $# -gt 0
14231423
then
14241424
packet="$*"

0 commit comments

Comments
 (0)