Fix build and code structure improvements. New but essential UI functionality. CI improvements. Documentation improvements. AI module improvements.
This commit is contained in:
@@ -390,11 +390,11 @@ public sealed class GatingReasonServiceTests
|
||||
[InlineData("debian", 0.95)]
|
||||
[InlineData("suse", 0.9)]
|
||||
[InlineData("microsoft", 0.9)]
|
||||
public void VexIssuerTrust_KnownIssuers_HaveExpectedTrustScores(string issuer, double expectedTrust)
|
||||
public void VexIssuerTrust_KnownIssuers_HaveExpectedTrustScores(string _, double expectedTrust)
|
||||
{
|
||||
// This test documents the expected trust scores for known issuers
|
||||
// The actual implementation is in GatingReasonService.GetIssuerTrust()
|
||||
expectedTrust.Should().BeGreaterOrEqualTo(0.9);
|
||||
expectedTrust.Should().BeGreaterThanOrEqualTo(0.9);
|
||||
}
|
||||
|
||||
[Trait("Category", TestCategories.Unit)]
|
||||
@@ -429,7 +429,7 @@ public sealed class GatingReasonServiceTests
|
||||
var justification = new string('x', 600);
|
||||
|
||||
// Assert
|
||||
justification.Length.Should().BeGreaterOrEqualTo(500);
|
||||
justification.Length.Should().BeGreaterThanOrEqualTo(500);
|
||||
}
|
||||
|
||||
[Trait("Category", TestCategories.Unit)]
|
||||
|
||||
Reference in New Issue
Block a user