fix: remove duplicate test case in ABI reflect tests

This commit is contained in:
Bilog WEB3 2025-09-30 19:06:05 +02:00 committed by GitHub
parent 1487a8577d
commit ab40a40ab8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -99,16 +99,6 @@ var reflectTests = []reflectTest{
"fieldB": "FieldA",
},
},
{
name: "DifferentName",
args: []string{"fieldB"},
struc: struct {
FieldA int `abi:"fieldB"`
}{},
want: map[string]string{
"fieldB": "FieldA",
},
},
{
name: "MultipleFields",
args: []string{"fieldA", "fieldB"},