Skip to content

Commit

Permalink
Update TerminateAtAnchorTest.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeShook committed Nov 6, 2024
1 parent b323d9b commit 88c3053
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions _tests/Udap.Common.Tests/TerminateAtAnchorTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,10 @@ public void TestAnchorTermination_Fail(X509VerificationFlags verificationFlags)
+ "\r\n" + string.Join("\r\n", diagnosticsChainValidator.ActualUntrustedMessages));

diagnosticsChainValidator.ActualErrorMessages.Count.Should().Be(0);
// This is 4 on Windows and my Linux WSl but only two on Linux build server.
// This is 4 on Windows and my Linux WSl but only 2 on Linux build server.
diagnosticsChainValidator.ActualProblemMessages.Count.Should().BeGreaterOrEqualTo(2);
diagnosticsChainValidator.ActualUntrustedMessages.Count.Should().Be(2);
// This is 2 on Windows and my Linux WSl but only 1 on Linux build server.
diagnosticsChainValidator.ActualUntrustedMessages.Count.Should().BeGreaterOrEqualTo(1);
}


Expand Down

0 comments on commit 88c3053

Please sign in to comment.