Skip to content

Commit 273f1fd

Browse files
authored
Fix syntax error in integration test (#306)
1 parent 2f5df0d commit 273f1fd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

integration_test/functions/src/database-tests.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,9 @@ export const databaseTests: any = functions.database
7272
expectEq((context as any).action, undefined)
7373
)
7474

75-
.it('should have admin authType', (change, context) => {
76-
expectEq(context.authType, 'ADMIN');
77-
})
75+
.it('should have admin authType', (change, context) =>
76+
expectEq(context.authType, 'ADMIN')
77+
)
7878

7979
.run(ctx.params[testIdFieldName], ch, ctx);
8080
});

0 commit comments

Comments
 (0)