fix: resolve nullability compilation errors in test fixtures
- Make WebServerFixture properties nullable to match async initialization - Add null-coalescing assertions where properties are guaranteed non-null - Fix GetDiscoveryDocumentAsync delegate signature in Remoting to allow nullable parameters - Build now succeeds with 0 errors, 7/9 tests passing
This commit is contained in:
parent
87d62791b8
commit
47323b2d85
2 changed files with 25 additions and 23 deletions
|
|
@ -100,8 +100,8 @@ namespace yavscTests
|
|||
|
||||
private bool ValidateCertificate(
|
||||
HttpRequestMessage request,
|
||||
X509Certificate2 certificate,
|
||||
X509Chain chain,
|
||||
X509Certificate2? certificate,
|
||||
X509Chain? chain,
|
||||
SslPolicyErrors errors)
|
||||
{
|
||||
// Accept all certificates (bypass validation)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue