Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
turbolent committed Oct 23, 2023
1 parent e44edd7 commit d6f80e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions runtime/tests/interpreter/invocation_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ func TestInterpretSelfDeclaration(t *testing.T) {

inter, err := parseCheckAndInterpretWithOptions(t, code, ParseCheckAndInterpretOptions{
Config: &interpreter.Config{
Storage: newUnmeteredInMemoryStorage(),
Storage: newUnmeteredInMemoryStorage(),
BaseActivationHandler: func(_ common.Location) *interpreter.VariableActivation {
return baseActivation
},
Expand All @@ -93,7 +93,7 @@ func TestInterpretSelfDeclaration(t *testing.T) {
BaseValueActivationHandler: func(_ common.Location) *sema.VariableActivation {
return baseValueActivation
},
AccessCheckMode: sema.AccessCheckModeNotSpecifiedUnrestricted,
AccessCheckMode: sema.AccessCheckModeNotSpecifiedUnrestricted,
},
})
require.NoError(t, err)
Expand Down

0 comments on commit d6f80e0

Please sign in to comment.