Skip to content

Commit

Permalink
chore: correct variable name in some file tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jeronimoalbi committed Nov 27, 2024
1 parent 2986a17 commit db3f32b
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions examples/gno.land/r/demo/boards2/z_0_a_filetest.gno
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ import (
"gno.land/r/demo/boards2"
)

const admin = std.Address("g1jg8mtutu9khhfwc4nxmuhcpftf0pajdhfvsqf5") // @test1
const owner = std.Address("g1jg8mtutu9khhfwc4nxmuhcpftf0pajdhfvsqf5") // @test1

func init() {
std.TestSetOrigCaller(admin)
std.TestSetOrigCaller(owner)
}

func main() {
Expand Down
4 changes: 2 additions & 2 deletions examples/gno.land/r/demo/boards2/z_0_b_filetest.gno
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ import (
"gno.land/r/demo/boards2"
)

const admin = std.Address("g1jg8mtutu9khhfwc4nxmuhcpftf0pajdhfvsqf5") // @test1
const owner = std.Address("g1jg8mtutu9khhfwc4nxmuhcpftf0pajdhfvsqf5") // @test1

func init() {
std.TestSetOrigCaller(admin)
std.TestSetOrigCaller(owner)
}

func main() {
Expand Down
4 changes: 2 additions & 2 deletions examples/gno.land/r/demo/boards2/z_0_c_filetest.gno
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ import (
)

const (
admin = std.Address("g1jg8mtutu9khhfwc4nxmuhcpftf0pajdhfvsqf5") // @test1
owner = std.Address("g1jg8mtutu9khhfwc4nxmuhcpftf0pajdhfvsqf5") // @test1
boardName = "test1"
)

func init() {
std.TestSetOrigCaller(admin)
std.TestSetOrigCaller(owner)
boards2.CreateBoard(boardName)
}

Expand Down
4 changes: 2 additions & 2 deletions examples/gno.land/r/demo/boards2/z_0_e_filetest.gno
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ import (
"gno.land/r/demo/boards2"
)

const admin = std.Address("g1jg8mtutu9khhfwc4nxmuhcpftf0pajdhfvsqf5") // @test1
const owner = std.Address("g1jg8mtutu9khhfwc4nxmuhcpftf0pajdhfvsqf5") // @test1

func init() {
std.TestSetOrigCaller(admin)
std.TestSetOrigCaller(owner)
}

func main() {
Expand Down
4 changes: 2 additions & 2 deletions examples/gno.land/r/demo/boards2/z_0_f_filetest.gno
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ import (
"gno.land/r/demo/boards2"
)

const admin = std.Address("g1jg8mtutu9khhfwc4nxmuhcpftf0pajdhfvsqf5") // @test1
const owner = std.Address("g1jg8mtutu9khhfwc4nxmuhcpftf0pajdhfvsqf5") // @test1

func init() {
std.TestSetOrigCaller(admin)
std.TestSetOrigCaller(owner)
}

func main() {
Expand Down

0 comments on commit db3f32b

Please sign in to comment.