Skip to content

Commit b9243e3

Browse files
committed
Fix imports.
1 parent 3d4f6a4 commit b9243e3

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

sema/gen/testdata/simple_interface/test.golden.go

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sema/struct_stringer.gen.go

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/checker/stringer_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import (
2323

2424
"github.com/stretchr/testify/assert"
2525

26-
"github.com/onflow/cadence/runtime/sema"
26+
"github.com/onflow/cadence/sema"
2727
)
2828

2929
func TestCheckStringer(t *testing.T) {

tests/interpreter/stringer_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ import (
2323

2424
"github.com/stretchr/testify/require"
2525

26-
"github.com/onflow/cadence/runtime/interpreter"
27-
. "github.com/onflow/cadence/runtime/tests/utils"
26+
"github.com/onflow/cadence/interpreter"
27+
. "github.com/onflow/cadence/tests/utils"
2828
)
2929

3030
func TestStringerBasic(t *testing.T) {

0 commit comments

Comments
 (0)