From f18a367d80de15c401f19d28a8cf2df73604e414 Mon Sep 17 00:00:00 2001 From: Josh Goldberg Date: Sun, 12 Feb 2023 12:41:28 -0500 Subject: [PATCH] Update packages/eslint-plugin/tests/rules/explicit-function-return-type.test.ts --- .../tests/rules/explicit-function-return-type.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/eslint-plugin/tests/rules/explicit-function-return-type.test.ts b/packages/eslint-plugin/tests/rules/explicit-function-return-type.test.ts index a8049a5c0b9..d3c1a540192 100644 --- a/packages/eslint-plugin/tests/rules/explicit-function-return-type.test.ts +++ b/packages/eslint-plugin/tests/rules/explicit-function-return-type.test.ts @@ -639,7 +639,7 @@ const foo = (() => { code: ` const foo = ((arg: number): number => { return arg; -})(); +})(0); `, options: [ {