Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
lmittmann committed Aug 8, 2024
1 parent 2ed7c99 commit 5489bc0
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions w3types/state_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,17 +70,13 @@ func TestStateMerge(t *testing.T) {
Name: "empty-code",
StateDst: w3types.State{common.Address{}: {Code: []byte{}}},
StateSrc: w3types.State{},
Want: w3types.State{
common.Address{}: {Code: []byte{}},
},
Want: w3types.State{common.Address{}: {Code: []byte{}}},
},
{
Name: "empty-code2",
StateDst: w3types.State{},
StateSrc: w3types.State{common.Address{}: {Code: []byte{}}},
Want: w3types.State{
common.Address{}: {Code: []byte{}},
},
Want: w3types.State{common.Address{}: {Code: []byte{}}},
},
}

Expand Down

0 comments on commit 5489bc0

Please sign in to comment.