diff --git a/pkg/core/native_contract_test.go b/pkg/core/native/invocation_test.go similarity index 97% rename from pkg/core/native_contract_test.go rename to pkg/core/native/invocation_test.go index 2be2c46b4..b6f55d9dc 100644 --- a/pkg/core/native_contract_test.go +++ b/pkg/core/native/invocation_test.go @@ -1,8 +1,9 @@ -package core_test +package native_test import ( "encoding/json" "fmt" + "path/filepath" "strings" "testing" @@ -22,6 +23,8 @@ import ( "github.com/stretchr/testify/require" ) +var pathToInternalContracts = filepath.Join("..", "..", "..", "internal", "contracts") + func TestNativeContract_Invoke(t *testing.T) { const ( transferCPUFee = 1 << 17