Remove a case statement whose two arms executed the same code. This was added for i18n testing in 6dd88832e77 (diffstat summary line varies by locale: miscellany, 2012-03-13), and was changed from test_i18ncmp in my 1108cea7f8e (tests: remove most uses of test_i18ncmp, 2021-02-11). Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@xxxxxxxxx> --- t/t4013-diff-various.sh | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/t/t4013-diff-various.sh b/t/t4013-diff-various.sh index 6cca8b84a6b..67f6411aff9 100755 --- a/t/t4013-diff-various.sh +++ b/t/t4013-diff-various.sh @@ -220,13 +220,7 @@ do then process_diffs "$actual" >actual && process_diffs "$expect" >expect && - case $cmd in - *format-patch* | *-stat*) - test_cmp expect actual;; - *) - test_cmp expect actual;; - esac && - rm -f "$actual" actual expect + test_cmp expect actual else # this is to help developing new tests. cp "$actual" "$expect" -- 2.31.1.646.g06d606cb9c7