From db3f32b4252b312163eb1dd22251216119428a9c Mon Sep 17 00:00:00 2001 From: jeronimoalbi Date: Wed, 27 Nov 2024 17:35:37 +0100 Subject: [PATCH] chore: correct variable name in some file tests --- examples/gno.land/r/demo/boards2/z_0_a_filetest.gno | 4 ++-- examples/gno.land/r/demo/boards2/z_0_b_filetest.gno | 4 ++-- examples/gno.land/r/demo/boards2/z_0_c_filetest.gno | 4 ++-- examples/gno.land/r/demo/boards2/z_0_e_filetest.gno | 4 ++-- examples/gno.land/r/demo/boards2/z_0_f_filetest.gno | 4 ++-- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/examples/gno.land/r/demo/boards2/z_0_a_filetest.gno b/examples/gno.land/r/demo/boards2/z_0_a_filetest.gno index ea270767001..fc3781a78a8 100644 --- a/examples/gno.land/r/demo/boards2/z_0_a_filetest.gno +++ b/examples/gno.land/r/demo/boards2/z_0_a_filetest.gno @@ -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() { diff --git a/examples/gno.land/r/demo/boards2/z_0_b_filetest.gno b/examples/gno.land/r/demo/boards2/z_0_b_filetest.gno index 1c24e10555f..08cbcf8ff43 100644 --- a/examples/gno.land/r/demo/boards2/z_0_b_filetest.gno +++ b/examples/gno.land/r/demo/boards2/z_0_b_filetest.gno @@ -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() { diff --git a/examples/gno.land/r/demo/boards2/z_0_c_filetest.gno b/examples/gno.land/r/demo/boards2/z_0_c_filetest.gno index 6a7c13c99cc..e9a06b53e55 100644 --- a/examples/gno.land/r/demo/boards2/z_0_c_filetest.gno +++ b/examples/gno.land/r/demo/boards2/z_0_c_filetest.gno @@ -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) } diff --git a/examples/gno.land/r/demo/boards2/z_0_e_filetest.gno b/examples/gno.land/r/demo/boards2/z_0_e_filetest.gno index c3032914822..33f45878b65 100644 --- a/examples/gno.land/r/demo/boards2/z_0_e_filetest.gno +++ b/examples/gno.land/r/demo/boards2/z_0_e_filetest.gno @@ -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() { diff --git a/examples/gno.land/r/demo/boards2/z_0_f_filetest.gno b/examples/gno.land/r/demo/boards2/z_0_f_filetest.gno index 1ff5ad840f4..f17f73bac4c 100644 --- a/examples/gno.land/r/demo/boards2/z_0_f_filetest.gno +++ b/examples/gno.land/r/demo/boards2/z_0_f_filetest.gno @@ -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() {