Skip to content

Commit fd27ccd

Browse files
committed
test: fix failing test
1 parent ec7f274 commit fd27ccd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/feature/repository/retrieves_where.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ describe('feature/repository/retrieves_where', () => {
7575

7676
const users = store
7777
.$repo(User)
78-
.where('age', (value) => value === 30)
78+
.where('age', (value: any) => value === 30)
7979
.get()
8080

8181
const expected = [

0 commit comments

Comments
 (0)