Skip to content

Commit bb57f39

Browse files
committed
test(runner): fix test runner check for errorContains
1 parent acfd9ec commit bb57f39

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/functional/runner/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -585,7 +585,7 @@ function testOperation(operation, obj, context, options) {
585585
const result = operation.result;
586586

587587
if (
588-
result.errorContains ||
588+
result.errorContains != null ||
589589
result.errorCodeName ||
590590
result.errorLabelsContain ||
591591
result.errorLabelsOmit

0 commit comments

Comments
 (0)