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) +}