From 3d6ffbd07a22207717ef71eb70e5344a6804a9f7 Mon Sep 17 00:00:00 2001 From: ssd04 Date: Mon, 11 Dec 2023 20:37:42 +0200 Subject: [PATCH] coverage unit test --- config/gasSchedule_test.go | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/config/gasSchedule_test.go b/config/gasSchedule_test.go index 822dad5ed..e8a42f433 100644 --- a/config/gasSchedule_test.go +++ b/config/gasSchedule_test.go @@ -7,6 +7,7 @@ import ( "github.com/mitchellh/mapstructure" "github.com/multiversx/mx-chain-vm-go/executor" "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" ) type operations struct { @@ -172,3 +173,10 @@ func Test_isDynamicGasComputationFuncCorrectlyDefined(t *testing.T) { assert.True(t, ok) }) } + +func TestMakeGasMap(t *testing.T) { + t.Parallel() + + gasMap := MakeGasMapForTests() + require.NotNil(t, gasMap) +}