diff options
Diffstat (limited to 'tests/vm_test.go')
-rw-r--r-- | tests/vm_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/vm_test.go b/tests/vm_test.go index b7746188c..d7e6b365a 100644 --- a/tests/vm_test.go +++ b/tests/vm_test.go @@ -19,7 +19,7 @@ package tests import ( "testing" - vm "github.com/dexon-foundation/dexon/core/vm/evm" + "github.com/dexon-foundation/dexon/core/vm/evm" ) func TestVM(t *testing.T) { @@ -29,7 +29,7 @@ func TestVM(t *testing.T) { vmt.fails("^vmSystemOperationsTest.json/createNameRegistrator$", "fails without parallel execution") vmt.walk(t, vmTestDir, func(t *testing.T, name string, test *VMTest) { - withTrace(t, test.json.Exec.GasLimit, func(vmconfig vm.Config) error { + withTrace(t, test.json.Exec.GasLimit, func(vmconfig evm.Config) error { return vmt.checkFailure(t, name, test.Run(vmconfig)) }) }) |