Skip to content

Commit 1674abf

Browse files
author
Brian Chen
authored
Ran lint on master (#2080)
1 parent 56cbbfd commit 1674abf

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

packages/firestore/test/util/equality_matcher.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,11 @@ export function addEqualityMatcher(): void {
8787
// eslint-disable-next-line @typescript-eslint/explicit-function-return-type
8888
const assertEql = (_super: (r: unknown, l: unknown) => boolean) => {
8989
originalFunction = originalFunction || _super;
90-
return function(this: unknown, expected?: unknown, msg?: unknown): void {
90+
return function(
91+
this: unknown,
92+
expected?: unknown,
93+
msg?: unknown
94+
): void {
9195
if (isActive) {
9296
utils.flag(this, 'message', msg);
9397
const actual = utils.flag(this, 'object');

0 commit comments

Comments
 (0)