We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 596a23f commit b5a9fb0Copy full SHA for b5a9fb0
1 file changed
pkg/workflow/error_aggregation_test.go
@@ -62,7 +62,7 @@ func TestErrorCollectorAdd_Aggregate(t *testing.T) {
62
// Add errors should not return them
63
result := collector.Add(err1)
64
require.NoError(t, result, "Should not return error in aggregate mode")
65
- assert.Greater(t, collector.Count(), 0, "Should have errors")
+ assert.Positive(t, collector.Count(), "Should have errors")
66
assert.Equal(t, 1, collector.Count(), "Should have 1 error")
67
68
result = collector.Add(err2)
0 commit comments