Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion artifactory_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
})
Expand Down
2 changes: 1 addition & 1 deletion sca/bom/buildinfo/technologies/nuget/nuget_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion tests/utils/integration/test_integrationutils.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}

Expand Down
Loading