diff --git a/internal/test_helpers/fake_reporter.go b/internal/test_helpers/fake_reporter.go index 59a3145e6..52f3c30f0 100644 --- a/internal/test_helpers/fake_reporter.go +++ b/internal/test_helpers/fake_reporter.go @@ -372,7 +372,7 @@ func BeSpecEvent(options ...interface{}) OmegaMatcher { matcher = HaveField("Attempt", x) description = append(description, fmt.Sprintf("Attempt=%d", x)) case time.Duration: - matcher = HaveField("Duration", BeNumerically("~", x, time.Duration(float64(x)*0.2))) + matcher = HaveField("Duration", BeNumerically("~", x, time.Duration(float64(x)*0.5))) description = append(description, "Duration="+x.String()) case types.NodeType: matcher = HaveField("NodeType", x)