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 <johannes.schindelin@gmx.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>

Johannes Schindelin committed Mar 25, 2019 at 11:14 UTC ae0a11c20dd75f5955a25903020340096739b294
1 file changed +1 -1
t/t5531-deep-submodule-push.sh
+1 -1
@@ -363,7 +363,7 @@ test_expect_success 'push succeeds if submodule has no remote and is on the firs
363 ) &&
364 git add b &&
365 git commit -m "added submodule" &&
366 - git push --recurse-submodule=check origin master
366 + git push --recurse-submodules=check origin master
367 )
368 '
369