Skip to content

Commit 3a1d9a3

Browse files
committed
style: linting and formatting
1 parent 5382a31 commit 3a1d9a3

File tree

2 files changed

+11
-7
lines changed

2 files changed

+11
-7
lines changed

src/decorators/arbOwnerPublicActionsUpgradeExecutor.integration.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { afterAll, beforeAll, it, expect } from 'vitest';
2-
import { Address, Hex, createPublicClient, encodeAbiParameters, http } from 'viem';
1+
import { it, expect } from 'vitest';
2+
import { Address, createPublicClient, http } from 'viem';
33
import { generatePrivateKey, privateKeyToAccount } from 'viem/accounts';
44
import { nitroTestnodeL3 } from '../chains';
55
import { arbOwnerPublicActions } from './arbOwnerPublicActions';

src/integrationTestHelpers/anvilHarness.ts

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
1-
import { chmodSync, copyFileSync, existsSync, mkdirSync, mkdtempSync, writeFileSync } from 'node:fs';
1+
import {
2+
chmodSync,
3+
copyFileSync,
4+
existsSync,
5+
mkdirSync,
6+
mkdtempSync,
7+
writeFileSync,
8+
} from 'node:fs';
29
import { tmpdir } from 'node:os';
310
import { dirname, join } from 'node:path';
411

@@ -137,10 +144,7 @@ function prepareNitroRuntimeDir(runtimeDir: string) {
137144
}
138145
}
139146

140-
function seedAnvilRpcCacheFromRepo(params: {
141-
cacheFilePath: string;
142-
repoCacheFilePath: string;
143-
}) {
147+
function seedAnvilRpcCacheFromRepo(params: { cacheFilePath: string; repoCacheFilePath: string }) {
144148
const { cacheFilePath, repoCacheFilePath } = params;
145149

146150
if (existsSync(cacheFilePath) || !existsSync(repoCacheFilePath)) {

0 commit comments

Comments
 (0)