Skip to content

Commit 1bc0077

Browse files
committed
Merge branch 'dev' into fix-sbom-component-ref-compare
2 parents 4687742 + 675cc37 commit 1bc0077

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

jas/analyzermanager.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import (
2323
const (
2424
ApplicabilityFeatureId = "contextual_analysis"
2525
AnalyzerManagerZipName = "analyzerManager.zip"
26-
defaultAnalyzerManagerVersion = "1.24.0"
26+
defaultAnalyzerManagerVersion = "1.27.0"
2727
analyzerManagerDownloadPath = "xsc-gen-exe-analyzer-manager-local/v1"
2828
analyzerManagerDirName = "analyzerManager"
2929
analyzerManagerExecutableName = "analyzerManager"

scans_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ func TestXrayBinaryScanSelectiveScan(t *testing.T) {
208208
subScans: []utils.SubScanType{utils.SecretsScan},
209209
validate: func(t *testing.T, issueCount validations.ValidationCountActualValues) {
210210
// Expect only Secrets vulnerabilities
211-
assert.GreaterOrEqual(t, issueCount.SecretsVulnerabilities, 2, "Secrets vulnerabilities count mismatch - should be 2 or more")
211+
assert.GreaterOrEqual(t, issueCount.SecretsVulnerabilities, 1, "Secrets vulnerabilities count mismatch - should be 1 or more")
212212
// All other vulnerability types should be 0
213213
assert.Equal(t, 0, issueCount.ScaVulnerabilities, "SCA vulnerabilities count mismatch - should be 0")
214214
assert.Equal(t, 0, issueCount.ApplicableVulnerabilities, "Applicable vulnerabilities count mismatch - should be 0")

0 commit comments

Comments
 (0)