diff --git a/pkg/core/blockchain_neotest_test.go b/pkg/core/blockchain_neotest_test.go index 1598b7e86..fe107ec5c 100644 --- a/pkg/core/blockchain_neotest_test.go +++ b/pkg/core/blockchain_neotest_test.go @@ -1149,7 +1149,9 @@ func TestConfigNativeUpdateHistory(t *testing.T) { "unit_testnet.single", } for _, tc := range testCases { - check(t, tc) + t.Run(fmt.Sprintf("%s", tc), func(t *testing.T) { + check(t, tc) + }) } }