We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1871b19 + bb3225c commit dc7b4acCopy full SHA for dc7b4ac
src/integration-tests/socks-echo/base-spec.core-env.ts
@@ -183,8 +183,9 @@ export function socksEchoTestDescription(useChurn:boolean) {
183
}
184
expect(event.connectionId).toEqual(connectionId);
185
outputString += arraybuffers.arrayBufferToString(event.response);
186
- if (outputString.indexOf('HTTP/1.0 404 Not Found') != -1 &&
187
- outputString.indexOf(nonExistentPath) != -1) {
+ if ((outputString.indexOf('HTTP/1.0 404 Not Found') != -1 &&
+ outputString.indexOf(nonExistentPath) != -1) ||
188
+ outputString.indexOf('HTTP/1.1 403 Forbidden') != -1) {
189
isDone = true;
190
done();
191
0 commit comments