From c8cc585a5f71cb66d9d6056b1a64ff854bf5dca9 Mon Sep 17 00:00:00 2001 From: Faye Amacker <33205765+fxamacker@users.noreply.github.com> Date: Wed, 18 Oct 2023 21:10:06 -0500 Subject: [PATCH] Fix lint warnings --- runtime/tests/interpreter/interpreter_test.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/runtime/tests/interpreter/interpreter_test.go b/runtime/tests/interpreter/interpreter_test.go index e98b057afc..915da54540 100644 --- a/runtime/tests/interpreter/interpreter_test.go +++ b/runtime/tests/interpreter/interpreter_test.go @@ -25,13 +25,13 @@ import ( "strings" "testing" - "github.com/onflow/cadence/runtime" - "github.com/onflow/cadence/runtime/activations" - "github.com/onflow/atree" + "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" + "github.com/onflow/cadence/runtime" + "github.com/onflow/cadence/runtime/activations" "github.com/onflow/cadence/runtime/ast" "github.com/onflow/cadence/runtime/common" "github.com/onflow/cadence/runtime/errors" @@ -8137,7 +8137,7 @@ func TestInterpretResourceMovingAndBorrowing(t *testing.T) { permanentSlabs = append(permanentSlabs, slab) } - // permanet slab is R1 (R2 is inlined in R1 slab) + // permanent slab is R1 (R2 is inlined in R1 slab) require.Equal(t, 1, len(permanentSlabs)) sort.Slice(permanentSlabs, func(i, j int) bool {