Allow non-strict result for Autobahn case 4.1.3

(written by @anurse)
This commit is contained in:
Pranav K 2017-02-02 14:25:36 -08:00 committed by GitHub
parent 0e1dd78771
commit 0f589a5b4c
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ namespace Microsoft.AspNetCore.WebSockets.ConformanceTest
// WebListener occasionally gives a non-strict response on 3.2. IIS Express seems to have the same behavior. Wonder if it's related to HttpSys?
// For now, just allow the non-strict response, it's not a failure.
await tester.DeployTestAndAddToSpec(ServerType.WebListener, ssl: false, environment: "ManagedSockets", cancellationToken: cts.Token, expectationConfig: expect => expect
.OkOrNonStrict("3.2", "4.2.4"));
.OkOrNonStrict("3.2", "4.1.3", "4.2.4"));
}
}