Skip to content

Commit 9719c75

Browse files
committed
Change if condition
1 parent 7ca8edb commit 9719c75

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • internal/testrunner/runners/pipeline

internal/testrunner/runners/pipeline/runner.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ func (r *runner) Run(options testrunner.TestOptions) ([]testrunner.TestResult, e
7979
r.runCompareResults = true
8080

8181
v, ok := os.LookupEnv(serverlessDisableCompareResults)
82-
if ok && strings.ToLower(v) != "false" {
82+
if ok && strings.ToLower(v) == "true" {
8383
r.runCompareResults = false
8484
}
8585
}

0 commit comments

Comments
 (0)