Skip to content

Commit 123aaf0

Browse files
committed
fix: lint
1 parent 872633a commit 123aaf0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

__tests__/schema/opportunity.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1187,7 +1187,9 @@ describe('query userOpportunityMatches', () => {
11871187
);
11881188

11891189
// Verify DESC ordering (most recent first)
1190-
expect(updatedDates[0].getTime()).toBeGreaterThan(updatedDates[1].getTime());
1190+
expect(updatedDates[0].getTime()).toBeGreaterThan(
1191+
updatedDates[1].getTime(),
1192+
);
11911193
});
11921194

11931195
it('should return different matches for different users', async () => {

0 commit comments

Comments
 (0)