Skip to content

Commit 7419e4e

Browse files
committed
eslint --fix .
1 parent 9b1f7bf commit 7419e4e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

documentation/api/promise-any.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ return expect.promise
9696
.nl()
9797
.i()
9898
.text(i + ': ')
99-
.block(e.getErrorMessage({ output: output }));
99+
.block(e.getErrorMessage({ output }));
100100
});
101101
});
102102
});

documentation/api/promise-settle.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ return expect.promise.all(promises).caught(function () {
6464
} else {
6565
output
6666
.error('')
67-
.block(promises[key].reason().getErrorMessage({ output: output }));
67+
.block(promises[key].reason().getErrorMessage({ output }));
6868
}
6969
output.nl();
7070
});

documentation/assertions/any/to-equal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ expect({ a: 'b' }, 'to equal', { a: 'b' });
55
const now = new Date();
66
expect(now, 'to equal', now);
77
expect(now, 'to equal', new Date(now.getTime()));
8-
expect({ now: now }, 'to equal', { now: now });
8+
expect({ now }, 'to equal', { now });
99
```
1010

1111
For a lot of types a failing equality test results in a nice

0 commit comments

Comments
 (0)