Skip to content

Commit 235b36a

Browse files
authored
Update hardhat/task-test-get-files.js
1 parent 3f5bb9c commit 235b36a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hardhat/task-test-get-files.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ internalTask(TASK_TEST_GET_TEST_FILES).setAction(async (args, hre, runSuper) =>
2121
'proxy/utils/UUPSUpgradeable.test.js',
2222
].map(p => path.join(hre.config.paths.tests, p));
2323

24-
return await runSuper(args).then(files => files.filter(file => hasProxies || !ignoredIfProxy.includes(file)));
24+
return (await runSuper(args)).filter(file => hasProxies || !ignoredIfProxy.includes(file));
2525
});

0 commit comments

Comments
 (0)