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'
115
115
EOF
116
116
117
117
cat << 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'...
118
122
Submodule 'merging' ($pwd /merging) registered for path '../super/merging'
119
123
Submodule 'none' ($pwd /none) registered for path '../super/none'
120
124
Submodule 'rebasing' ($pwd /rebasing) registered for path '../super/rebasing'
121
125
Submodule 'submodule' ($pwd /submodule) registered for path '../super/submodule'
122
- Cloning into '$pwd /recursivesuper/super/merging'...
123
126
done.
124
- Cloning into '$pwd /recursivesuper/super/none'...
125
127
done.
126
- Cloning into '$pwd /recursivesuper/super/rebasing'...
127
128
done.
128
- Cloning into '$pwd /recursivesuper/super/submodule'...
129
129
done.
130
130
EOF
131
131
@@ -137,7 +137,8 @@ test_expect_success 'submodule update --init --recursive from subdirectory' '
137
137
git submodule update --init --recursive ../super >../../actual 2>../../actual2
138
138
) &&
139
139
test_i18ncmp expect actual &&
140
- test_i18ncmp expect2 actual2
140
+ sort actual2 >actual2.sorted &&
141
+ test_i18ncmp expect2 actual2.sorted
141
142
'
142
143
143
144
cat << EOF >expect2
You can’t perform that action at this time.
0 commit comments