File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -111,29 +111,29 @@ test_expect_success 'read-tree' '
111
111
112
112
test_expect_success ' alias expansion' '
113
113
(
114
- git config alias.ss status &&
114
+ git config alias.test-status-alias status &&
115
115
cd dir &&
116
116
git status &&
117
- git ss
117
+ git test-status-alias
118
118
)
119
119
'
120
120
121
121
test_expect_success NOT_MINGW ' !alias expansion' '
122
122
pwd >expect &&
123
123
(
124
- git config alias.test !pwd &&
124
+ git config alias.test-alias-directory !pwd &&
125
125
cd dir &&
126
- git test >../actual
126
+ git test-alias-directory >../actual
127
127
) &&
128
128
test_cmp expect actual
129
129
'
130
130
131
131
test_expect_success ' GIT_PREFIX for !alias' '
132
132
printf "dir/" >expect &&
133
133
(
134
- git config alias.test "!sh -c \"printf \$GIT_PREFIX\"" &&
134
+ git config alias.test-alias-directory "!sh -c \"printf \$GIT_PREFIX\"" &&
135
135
cd dir &&
136
- git test >../actual
136
+ git test-alias-directory >../actual
137
137
) &&
138
138
test_cmp expect actual
139
139
'
You can’t perform that action at this time.
0 commit comments