Skip to content

Commit

Permalink
fix typecheck
Browse files Browse the repository at this point in the history
  • Loading branch information
ncdiehl committed Apr 11, 2024
1 parent 2bffac6 commit 931d8bb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ describe('useCreateProtocolAnalysisMutation hook', () => {
vi.mocked(createProtocolAnalysis).mockRejectedValue('oh no')

const { result } = renderHook(
() => useCreateProtocolAnalysisMutation({}, 'fake-protocol-key'),
() => useCreateProtocolAnalysisMutation('fake-protocol-key'),
{
wrapper,
}
Expand All @@ -58,7 +58,7 @@ describe('useCreateProtocolAnalysisMutation hook', () => {
} as Response<ProtocolAnalysisSummary[]>)

const { result } = renderHook(
() => useCreateProtocolAnalysisMutation({}, 'fake-protocol-key'),
() => useCreateProtocolAnalysisMutation('fake-protocol-key'),
{
wrapper,
}
Expand Down

0 comments on commit 931d8bb

Please sign in to comment.