Merge branch 'ss/gitmodules-ignore-doc'
[gitweb.git] / t / t3600-rm.sh
index a6e5c5bd5607dcf5ebd398179e30deba319ab127..5f9913ba33d3edc848b03fc37bed587fe5c54849 100755 (executable)
@@ -659,14 +659,14 @@ test_expect_success 'rm of a populated nested submodule with nested untracked fi
        test -d submod &&
        test -f submod/.git &&
        git status -s -uno --ignore-submodules=none >actual &&
-       test_cmp expect.modified_inside actual &&
+       test_cmp expect.modified_untracked actual &&
        git rm -f submod &&
        test ! -d submod &&
        git status -s -uno --ignore-submodules=none >actual &&
        test_cmp expect actual
 '
 
-test_expect_success 'rm of a populated nested submodule with a nested .git directory fails even when forced' '
+test_expect_success "rm absorbs submodule's nested .git directory" '
        git reset --hard &&
        git submodule update --recursive &&
        (cd submod/subsubmod &&