Skip to content

Commit

Permalink
chore: fixup
Browse files Browse the repository at this point in the history
Signed-off-by: Manfred Touron <94029+moul@users.noreply.github.com>
  • Loading branch information
moul committed Aug 13, 2023
1 parent 45fbd69 commit d25051e
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions gno.land/pkg/gnoland/testing_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,14 @@ func TestBasicFlow(t *testing.T) {
defer app.Close()
require.NotNil(t, app)
// XXX: continue

_ /* priv */, _ /* pub */, addr := tu.KeyTestPubAddr()
require.NotEmpty(t, addr)
resp := app.Query(abci.RequestQuery{
Path: fmt.Sprintf("bank/%s/%s", bank.QueryBalance, addr.String()),
Data: []byte{},
})
require.Equal(t, resp, 42)
}

func ExampleNewTestingApp() {
Expand Down

0 comments on commit d25051e

Please sign in to comment.