Skip to content

Commit

Permalink
Update tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
RZhang05 committed Oct 30, 2024
1 parent d93bb65 commit ce4bb74
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions parser/expression_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ import (
"github.com/onflow/cadence/common"
"github.com/onflow/cadence/errors"
"github.com/onflow/cadence/parser/lexer"
"github.com/onflow/cadence/runtime/tests/utils"
. "github.com/onflow/cadence/test_utils/common_utils"
)

Expand Down Expand Up @@ -6331,7 +6330,7 @@ func TestParseStringTemplate(t *testing.T) {
}

require.Error(t, err)
utils.AssertEqualWithDiff(t,
AssertEqualWithDiff(t,
[]error{
&SyntaxError{
Message: "expected token ')'",
Expand Down Expand Up @@ -6543,7 +6542,7 @@ func TestParseStringTemplate(t *testing.T) {
},
}

utils.AssertEqualWithDiff(t, expected, actual)
AssertEqualWithDiff(t, expected, actual)
})
}

Expand Down

0 comments on commit ce4bb74

Please sign in to comment.