From: Johannes Schindelin Date: Mon, 25 Mar 2019 18:14:20 +0000 (-0700) Subject: t5531: avoid using an abbreviated option X-Git-Tag: v2.22.0-rc0~79^2~4 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ae0a11c20dd75f5955a25903020340096739b294;p=thirdparty%2Fgit.git t5531: avoid using an abbreviated option It was probably just an oversight: the `--recurse-submodules` option puts the term "submodules" in the plural form, not the singular one. To avoid future problems in case that another option is introduced that starts with the prefix `--recurse-submodule`, let's just fix this. Signed-off-by: Johannes Schindelin Signed-off-by: Junio C Hamano --- diff --git a/t/t5531-deep-submodule-push.sh b/t/t5531-deep-submodule-push.sh index e2c37fd978..4ad059e6be 100755 --- a/t/t5531-deep-submodule-push.sh +++ b/t/t5531-deep-submodule-push.sh @@ -363,7 +363,7 @@ test_expect_success 'push succeeds if submodule has no remote and is on the firs ) && git add b && git commit -m "added submodule" && - git push --recurse-submodule=check origin master + git push --recurse-submodules=check origin master ) '