You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tests/tests.sh
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -153,14 +153,14 @@ testUrlDefaultName()
153
153
{
154
154
url='example%20with%20spaces.com'
155
155
ret=$(${WCURL_CMD}${url}2>&1)
156
-
assertContains "Verify whether 'wcurl' chooses the correct default filename when there's no path in the URL""${ret}"'index.html'
156
+
assertContains "Verify whether 'wcurl' chooses the correct default filename when there is no path in the URL""${ret}"'index.html'
157
157
}
158
158
159
159
testUrlDefaultNameTrailingSlash()
160
160
{
161
161
url='example%20with%20spaces.com/'
162
162
ret=$(${WCURL_CMD}${url}2>&1)
163
-
assertContains "Verify whether 'wcurl' chooses the correct default filename when there's no path in the URL and the URl ends with a slash""${ret}"'index.html'
163
+
assertContains "Verify whether 'wcurl' chooses the correct default filename when there is no path in the URL and the URl ends with a slash""${ret}"'index.html'
164
164
}
165
165
166
166
testUrlDecodingWhitespace()
@@ -207,9 +207,9 @@ testUrlDecodingBackslashes()
207
207
assertContains "Verify whether 'wcurl' successfully uses the default filename when the URL ends with a slash""${ret}"'--output filename%5Cwith%2Fbackslashes%5c%2f'
208
208
}
209
209
210
-
# Test decoding a bunch of different languages (that don't use the latin
210
+
# Test decoding a bunch of different languages (that do not use the latin
211
211
# alphabet), we could split each language on its own test, but for now it
0 commit comments