From: Ævar Arnfjörð Bjarmason Date: Fri, 9 Feb 2018 20:32:09 +0000 (+0000) Subject: fetch tests: expand case/esac for later change X-Git-Tag: v2.17.0-rc0~48^2~7 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/59caf52d094494a8c02dd7f15302891678533182?hp=82f34e03e91af42a020f15a1d248bc75785c565a fetch tests: expand case/esac for later change Expand a compact case/esac statement for a later change that'll add more logic to the body of the "*" case. This is a whitespace-only change. Signed-off-by: Ævar Arnfjörð Bjarmason Signed-off-by: Junio C Hamano --- diff --git a/t/t5510-fetch.sh b/t/t5510-fetch.sh index 88d38e0819..dfc749f576 100755 --- a/t/t5510-fetch.sh +++ b/t/t5510-fetch.sh @@ -543,8 +543,12 @@ test_expect_success "should be able to fetch with duplicate refspecs" ' set_config_tristate () { # var=$1 val=$2 case "$2" in - unset) test_unconfig "$1" ;; - *) git config "$1" "$2" ;; + unset) + test_unconfig "$1" + ;; + *) + git config "$1" "$2" + ;; esac }