From 04cc2d5070dba265a7e1e3ba3a0f5186357d19c8 Mon Sep 17 00:00:00 2001 From: Manfred Touron <94029+moul@users.noreply.github.com> Date: Sun, 14 Jul 2024 21:12:36 +0200 Subject: [PATCH] chore: fix ci (#2587) Signed-off-by: moul <94029+moul@users.noreply.github.com>
Contributors' checklist... - [ ] Added new tests, or not needed, or not feasible - [ ] Provided an example (e.g. screenshot) to aid review or the PR is self-explanatory - [ ] Updated the official documentation or not needed - [ ] No breaking changes were made, or a `BREAKING CHANGE: xxx` message was included in the description - [ ] Added references to related issues and PRs - [ ] Provided any useful hints for running manual tests - [ ] Added new benchmarks to [generated graphs](https://gnoland.github.io/benchmarks), if any. More info [here](https://github.com/gnolang/gno/blob/master/.benchmarks/README.md).
Signed-off-by: moul <94029+moul@users.noreply.github.com> --- .../gnoland/testdata/gnoweb_airgapped.txtar | 25 +++++++++---------- 1 file changed, 12 insertions(+), 13 deletions(-) diff --git a/gno.land/cmd/gnoland/testdata/gnoweb_airgapped.txtar b/gno.land/cmd/gnoland/testdata/gnoweb_airgapped.txtar index b665656f706..3ed35a1b1d3 100644 --- a/gno.land/cmd/gnoland/testdata/gnoweb_airgapped.txtar +++ b/gno.land/cmd/gnoland/testdata/gnoweb_airgapped.txtar @@ -8,8 +8,18 @@ loadpkg gno.land/r/demo/echo gnoland start # Query account -gnokey query auth/accounts/$USER_ADDR_test1 -cmp stdout query.stdout.golden +gnokey query auth/accounts/${USER_ADDR_test1} +stdout 'height: 0' +stdout 'data: {' +stdout ' "BaseAccount": {' +stdout ' "address": "g1jg8mtutu9khhfwc4nxmuhcpftf0pajdhfvsqf5",' +stdout ' "coins": "[0-9]*ugnot",' # dynamic +stdout ' "public_key": null,' +stdout ' "account_number": "0",' +stdout ' "sequence": "0"' +stdout ' }' +stdout '}' +! stderr '.+' # empty # Create transaction gnokey maketx call -pkgpath "gno.land/r/demo/echo" -func "Render" -gas-fee 1000000ugnot -gas-wanted 2000000 -send "" -args "HELLO" test1 @@ -23,17 +33,6 @@ gnokey broadcast $WORK/call.tx stdout '("HELLO" string)' stdout 'GAS WANTED: 2000000' --- query.stdout.golden -- -height: 0 -data: { - "BaseAccount": { - "address": "g1jg8mtutu9khhfwc4nxmuhcpftf0pajdhfvsqf5", - "coins": "[0-9]*ugnot", - "public_key": null, - "account_number": "0", - "sequence": "0" - } -} -- sign.stdout.golden -- Tx successfully signed and saved to $WORK/call.tx