From ab40a40ab85762e65dd2863547aa613876a2ba5e Mon Sep 17 00:00:00 2001 From: Bilog WEB3 <155262265+Bilogweb3@users.noreply.github.com> Date: Tue, 30 Sep 2025 19:06:05 +0200 Subject: [PATCH] fix: remove duplicate test case in ABI reflect tests --- accounts/abi/reflect_test.go | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/accounts/abi/reflect_test.go b/accounts/abi/reflect_test.go index f5e509c52f0..37c3f4f4c6c 100644 --- a/accounts/abi/reflect_test.go +++ b/accounts/abi/reflect_test.go @@ -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"},