Skip to content

Commit

Permalink
fixed unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
daveshanley committed Jan 7, 2025
1 parent 80e7cc6 commit 10bbe26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vacuum-report/junit_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ func TestBuildJUnitReport(t *testing.T) {
j.ResultSet.Results[0].Path = "$.somewhere.out.there"
j.ResultSet.Results[0].RuleId = "R0001"
f := time.Now().Add(-time.Millisecond * 5)
data := BuildJUnitReport(j.ResultSet, f)
data := BuildJUnitReport(j.ResultSet, f, []string{"test", "args"})
assert.GreaterOrEqual(t, len(data), 407)
}

0 comments on commit 10bbe26

Please sign in to comment.