Skip to content

Commit

Permalink
chore: fix parameter name typo (#537)
Browse files Browse the repository at this point in the history
  • Loading branch information
G-Rath committed Feb 23, 2020
1 parent 6507a7a commit 5d8be9d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/rules/utils.ts
Expand Up @@ -626,9 +626,9 @@ export const isHook = (
HookName.hasOwnProperty(node.callee.name);

export const getTestCallExpressionsFromDeclaredVariables = (
declaredVaiables: TSESLint.Scope.Variable[],
declaredVariables: TSESLint.Scope.Variable[],
): Array<JestFunctionCallExpression<TestCaseName>> => {
return declaredVaiables.reduce<
return declaredVariables.reduce<
Array<JestFunctionCallExpression<TestCaseName>>
>(
(acc, { references }) =>
Expand Down

0 comments on commit 5d8be9d

Please sign in to comment.