File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed
Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -115,17 +115,17 @@ Submodule path '../super/submodule': checked out '$submodulesha1'
115115EOF
116116
117117cat << EOF >expect2
118+ Cloning into '$pwd /recursivesuper/super/merging'...
119+ Cloning into '$pwd /recursivesuper/super/none'...
120+ Cloning into '$pwd /recursivesuper/super/rebasing'...
121+ Cloning into '$pwd /recursivesuper/super/submodule'...
118122Submodule 'merging' ($pwd /merging) registered for path '../super/merging'
119123Submodule 'none' ($pwd /none) registered for path '../super/none'
120124Submodule 'rebasing' ($pwd /rebasing) registered for path '../super/rebasing'
121125Submodule 'submodule' ($pwd /submodule) registered for path '../super/submodule'
122- Cloning into '$pwd /recursivesuper/super/merging'...
123126done.
124- Cloning into '$pwd /recursivesuper/super/none'...
125127done.
126- Cloning into '$pwd /recursivesuper/super/rebasing'...
127128done.
128- Cloning into '$pwd /recursivesuper/super/submodule'...
129129done.
130130EOF
131131
@@ -137,7 +137,8 @@ test_expect_success 'submodule update --init --recursive from subdirectory' '
137137 git submodule update --init --recursive ../super >../../actual 2>../../actual2
138138 ) &&
139139 test_i18ncmp expect actual &&
140- test_i18ncmp expect2 actual2
140+ sort actual2 >actual2.sorted &&
141+ test_i18ncmp expect2 actual2.sorted
141142'
142143
143144cat << EOF >expect2
You can’t perform that action at this time.
0 commit comments