Skip to content

Commit dca0afe

Browse files
committed
test(state): wrap long func signature to satisfy lll linter
1 parent 365cedf commit dca0afe

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

core/state/accessors_test.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@ func TestContractAccessors(t *testing.T) {
1818
addr := felt.NewUnsafeFromString[felt.Felt]("0x123")
1919

2020
// storeContract stores a contract with the given values and fails the test on error.
21-
storeContract := func(t *testing.T, disk db.KeyValueWriter, nonce, classHash string, height uint64) {
21+
storeContract := func(
22+
t *testing.T, disk db.KeyValueWriter, nonce, classHash string, height uint64,
23+
) {
2224
t.Helper()
2325
require.NoError(t, state.WriteContract(
2426
disk, addr,

0 commit comments

Comments
 (0)