Skip to content

Commit f165c5c

Browse files
committed
Fix issue with test names in queryFn.test.tsx
1 parent 4651868 commit f165c5c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/toolkit/src/query/tests/queryFn.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ describe('queryFn base implementation tests', () => {
184184
['withAsyncQueryFn', withAsyncQueryFn, 'data'],
185185
['withAsyncErrorQueryFn', withAsyncErrorQueryFn, 'error'],
186186
['withAsyncThrowingQueryFn', withAsyncThrowingQueryFn, 'throw'],
187-
])('%s1', async (endpointName, endpoint, expectedResult) => {
187+
])('%s', async (endpointName, endpoint, expectedResult) => {
188188
const thunk = endpoint.initiate(endpointName)
189189
let result: undefined | QuerySubState<any> = undefined
190190
await expect(async () => {

0 commit comments

Comments
 (0)