Skip to content

Commit

Permalink
adjust access modifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
turbolent committed Jan 31, 2024
1 parent 727a6db commit 4f92716
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions flowkit/project/program_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ func TestProgram(t *testing.T) {
import FooSpace from 0x124
import "BarSpace"
pub contract Foo {}
access(all) contract Foo {}
`),
expectedCount: 2,
},
Expand Down Expand Up @@ -193,7 +193,7 @@ func TestProgram(t *testing.T) {
import FooSpace from 0x124
import "BarSpace"
pub contract Foo {}
access(all) contract Foo {}
`)

expected := []byte(`
Expand All @@ -202,7 +202,7 @@ func TestProgram(t *testing.T) {
import "FooSpace"
import "BarSpace"
pub contract Foo {}
access(all) contract Foo {}
`)

program, err := NewProgram(code, nil, "")
Expand Down

0 comments on commit 4f92716

Please sign in to comment.