mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-17 01:13:45 +00:00
accounts/abi: silly mistake corrected in tests
Signed-off-by: VoR0220 <catalanor0220@gmail.com>
This commit is contained in:
parent
beda0c0e89
commit
c7b8cede8f
1 changed files with 1 additions and 1 deletions
|
|
@ -197,7 +197,7 @@ func TestStructParse(t *testing.T) {
|
|||
},
|
||||
},
|
||||
} {
|
||||
newStruct, err := ParseStructType(test.input.Name, test.input.Components...)
|
||||
newStruct, err := ParseStructType(test.input.Type, test.input.Components...)
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue