Skip to content

Commit 56fc34a

Browse files
committed
attempt to check failures after fixing another issue in audit tests
1 parent 6b3c4fe commit 56fc34a

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/actions/install-and-setup/action.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,13 @@ runs:
4646
- name: Install dotnet
4747
uses: actions/setup-dotnet@v4
4848
with:
49-
dotnet-version: '8.x'
50-
- name: Install Mono on Linux
51-
run: |
52-
sudo apt-get update
53-
sudo apt-get install -y mono-devel
54-
if: runner.os == 'Linux'
55-
shell: 'bash'
49+
dotnet-version: '6.x'
50+
#- name: Install Mono on Linux
51+
# run: |
52+
# sudo apt-get update
53+
# sudo apt-get install -y mono-devel
54+
# if: runner.os == 'Linux'
55+
# shell: 'bash'
5656

5757
- name: Setup Python3
5858
uses: actions/setup-python@v5

audit_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,7 @@ func TestXrayAuditGoJson(t *testing.T) {
380380
func TestXrayAuditGoSimpleJson(t *testing.T) {
381381
integration.InitAuditGoTest(t, scangraph.GraphScanMinXrayVersion)
382382
output := testXrayAuditGo(t, true, string(format.SimpleJson), "simple-project")
383-
validations.VerifySimpleJsonResults(t, output, validations.ValidationParams{Licenses: 3, Vulnerabilities: 4, NotCovered: 2, NotApplicable: 2})
383+
validations.VerifySimpleJsonResults(t, output, validations.ValidationParams{Licenses: 3, Vulnerabilities: 4, NotCovered: 1, NotApplicable: 3})
384384
}
385385

386386
func testXrayAuditGo(t *testing.T, noCreds bool, format, project string) string {

0 commit comments

Comments
 (0)