Skip to content

Commit 989823f

Browse files
chore(test): add curly braces for eslint curly rule
Co-Authored-By: Claude <[email protected]>
1 parent 3030cf8 commit 989823f

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/auto-reply/usage-bar/template.test.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@ const cleanups: Array<() => void> = [];
2222
afterEach(() => {
2323
clearUsageBarTemplateCacheForTest();
2424
warnSpy.mockClear();
25-
for (const fn of cleanups.splice(0)) fn();
25+
for (const fn of cleanups.splice(0)) {
26+
fn();
27+
}
2628
});
2729

2830
function tmpDir(): string {

0 commit comments

Comments
 (0)