Skip to content

Commit

Permalink
improve testing
Browse files Browse the repository at this point in the history
  • Loading branch information
pedrompflopes committed Nov 24, 2023
1 parent d18a86e commit cb23906
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/integration/result_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ func TestResultsGeneratingSBOMWithProxy(t *testing.T) {
}

err, _ := executeCommand(t, args...)
assert.Assert(t, err != nil)
assert.NilError(t, err, "TestResultsGeneratingSBOMWithProxy")
}

func TestResultsGeneratingSBOM(t *testing.T) {
Expand All @@ -275,7 +275,7 @@ func TestResultsGeneratingSBOM(t *testing.T) {
}

err, _ := executeCommand(t, args...)
assert.Assert(t, err != nil)
assert.NilError(t, err, "TestResultsGeneratingSBOM")
}

func TestResultsWrongScanID(t *testing.T) {
Expand Down

0 comments on commit cb23906

Please sign in to comment.