allow 4.2.4 to have non-strict behavior (#128)

This commit is contained in:
Andrew Stanton-Nurse 2016-10-31 14:04:20 -07:00 committed by GitHub
parent 303f9ea2de
commit 68839d76e3
1 changed files with 2 additions and 1 deletions

View File

@ -65,7 +65,8 @@ namespace Microsoft.AspNetCore.WebSockets.ConformanceTest
.OkOrNonStrict("3.2", "3.3", "3.4", "4.1.3", "4.1.4", "4.1.5", "4.2.3", "4.2.4", "4.2.5", "5.15")); // These occasionally get non-strict results
}
await tester.DeployTestAndAddToSpec(ServerType.WebListener, ssl: false, environment: "ManagedSockets");
await tester.DeployTestAndAddToSpec(ServerType.WebListener, ssl: false, environment: "ManagedSockets", expectationConfig: expect => expect
.OkOrNonStrict("4.2.4"));
}
}