diff --git a/packages/eslint-plugin/tests/rules/restrict-template-expressions.test.ts b/packages/eslint-plugin/tests/rules/restrict-template-expressions.test.ts index 3aa36abb249..2f5900f3d2a 100644 --- a/packages/eslint-plugin/tests/rules/restrict-template-expressions.test.ts +++ b/packages/eslint-plugin/tests/rules/restrict-template-expressions.test.ts @@ -32,7 +32,7 @@ ruleTester.run('restrict-template-expressions', rule, { `, // Base case - intersection type ` - function test(arg: T) { + function test(arg: T) { return \`arg = \${arg}\`; } `, @@ -77,10 +77,10 @@ ruleTester.run('restrict-template-expressions', rule, { { options: [{ allowNumber: true }], code: ` - function test(arg: T) { - return \`arg = \${arg}\`; - } - `, + function test(arg: T) { + return \`arg = \${arg}\`; + } + `, }, { options: [{ allowNumber: true }],