diff --git a/artifactory_test.go b/artifactory_test.go index 27643e089..676e83e88 100644 --- a/artifactory_test.go +++ b/artifactory_test.go @@ -119,7 +119,7 @@ func TestDependencyResolutionFromArtifactory(t *testing.T) { for _, testCase := range testCases { t.Run(testCase.projectType.String(), func(t *testing.T) { if testCase.skipMsg != "" { - securityTestUtils.SkipTestIfDurationNotPassed(t, "22-11-2025", 30, testCase.skipMsg) + securityTestUtils.SkipTestIfDurationNotPassed(t, "22-12-2025", 30, testCase.skipMsg) } testSingleTechDependencyResolution(t, testCase.testProjectPath, testCase.resolveRepoName, testCase.cacheRepoName, testCase.projectType) }) diff --git a/git_test.go b/git_test.go index 70a466fe9..86af84dfe 100644 --- a/git_test.go +++ b/git_test.go @@ -263,7 +263,7 @@ func TestGitAuditJasSkipNotApplicableCvesViolations(t *testing.T) { validations.ValidationParams{ Violations: &validations.ViolationCount{ ValidateScan: &validations.ScanCount{Sca: 8, Sast: 2, Secrets: 2}, - ValidateApplicabilityStatus: &validations.ApplicabilityStatusCount{NotApplicable: 3, NotCovered: 5}, + ValidateApplicabilityStatus: &validations.ApplicabilityStatusCount{NotApplicable: 3, NotCovered: 5, Inactive: 2}, }, ExactResultsMatch: true, }, @@ -291,7 +291,7 @@ func TestGitAuditJasSkipNotApplicableCvesViolations(t *testing.T) { validations.ValidationParams{ Violations: &validations.ViolationCount{ ValidateScan: &validations.ScanCount{Sca: 5, Sast: 2, Secrets: 2}, - ValidateApplicabilityStatus: &validations.ApplicabilityStatusCount{NotCovered: 5}, + ValidateApplicabilityStatus: &validations.ApplicabilityStatusCount{NotCovered: 5, Inactive: 2}, }, ExactResultsMatch: true, }, diff --git a/sca/bom/buildinfo/technologies/nuget/nuget_test.go b/sca/bom/buildinfo/technologies/nuget/nuget_test.go index b244b3988..4226ce88f 100644 --- a/sca/bom/buildinfo/technologies/nuget/nuget_test.go +++ b/sca/bom/buildinfo/technologies/nuget/nuget_test.go @@ -203,7 +203,7 @@ func TestSkipBuildDepTreeWhenInstallForbidden(t *testing.T) { for _, test := range testCases { t.Run(test.name, func(t *testing.T) { if test.skipMsg != "" { - securityTestUtils.SkipTestIfDurationNotPassed(t, "22-11-2025", 30, test.skipMsg) + securityTestUtils.SkipTestIfDurationNotPassed(t, "22-12-2025", 30, test.skipMsg) } // Create and change directory to test workspace _, cleanUp := technologies.CreateTestWorkspace(t, test.testDir) diff --git a/tests/utils/integration/test_integrationutils.go b/tests/utils/integration/test_integrationutils.go index 91fc3b9c1..05724cfcf 100644 --- a/tests/utils/integration/test_integrationutils.go +++ b/tests/utils/integration/test_integrationutils.go @@ -115,7 +115,7 @@ func InitAuditNewScaTests(t *testing.T, minVersion string) { if !*configTests.TestAuditNewSca { t.Skip(getSkipTestMsg("Audit command new SCA integration", "--test.audit.NewSca")) } - testUtils.SkipTestIfDurationNotPassed(t, "22-11-2025", 30, "Catalog API not available yet in test platform.") + testUtils.SkipTestIfDurationNotPassed(t, "22-12-2025", 30, "Catalog API not available yet in test platform.") testUtils.GetAndValidateXrayVersion(t, minVersion) }