From a4779de3754b07b3a968352fa1ef63829d3b7b60 Mon Sep 17 00:00:00 2001 From: Anna Shaleva Date: Mon, 20 Nov 2023 20:03:01 +0300 Subject: [PATCH] core: improve TestConfigNativeUpdateHistory subtests naming Signed-off-by: Anna Shaleva --- pkg/core/blockchain_neotest_test.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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) + }) } }