From 49b69f811af50c40868d9b27f7065375fc5ad11c Mon Sep 17 00:00:00 2001 From: Raymond Zhang Date: Mon, 21 Oct 2024 10:05:08 -0400 Subject: [PATCH] Update imports. --- sema/gen/testdata/simple_interface/test.golden.go | 4 ++-- sema/struct_stringer.gen.go | 4 ++-- tests/interpreter/stringer_test.go | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/sema/gen/testdata/simple_interface/test.golden.go b/sema/gen/testdata/simple_interface/test.golden.go index ae15975a61..c976eafded 100644 --- a/sema/gen/testdata/simple_interface/test.golden.go +++ b/sema/gen/testdata/simple_interface/test.golden.go @@ -20,8 +20,8 @@ package simple_interface import ( - "github.com/onflow/cadence/runtime/common" - "github.com/onflow/cadence/runtime/sema" + "github.com/onflow/cadence/common" + "github.com/onflow/cadence/sema" ) const TestTypeName = "Test" diff --git a/sema/struct_stringer.gen.go b/sema/struct_stringer.gen.go index fd583822cd..7f23bd22df 100644 --- a/sema/struct_stringer.gen.go +++ b/sema/struct_stringer.gen.go @@ -20,8 +20,8 @@ package sema import ( - "github.com/onflow/cadence/runtime/ast" - "github.com/onflow/cadence/runtime/common" + "github.com/onflow/cadence/ast" + "github.com/onflow/cadence/common" ) const StructStringerTypeToStringFunctionName = "toString" diff --git a/tests/interpreter/stringer_test.go b/tests/interpreter/stringer_test.go index eafe44652f..d01acd5b43 100644 --- a/tests/interpreter/stringer_test.go +++ b/tests/interpreter/stringer_test.go @@ -23,8 +23,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/onflow/cadence/runtime/interpreter" - . "github.com/onflow/cadence/runtime/tests/utils" + "github.com/onflow/cadence/interpreter" + . "github.com/onflow/cadence/tests/utils" ) func TestStringerBasic(t *testing.T) {