From 0a662c4c673dfdcb0500ff75900b00f1e9c009b6 Mon Sep 17 00:00:00 2001 From: Morgan Date: Wed, 10 Jul 2024 13:05:26 -0500 Subject: [PATCH] test(cmd/gno): fix TestBugApp (#2572)
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).
--- gnovm/cmd/gno/bug_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnovm/cmd/gno/bug_test.go b/gnovm/cmd/gno/bug_test.go index 81231c3d580..516bfd4081b 100644 --- a/gnovm/cmd/gno/bug_test.go +++ b/gnovm/cmd/gno/bug_test.go @@ -14,7 +14,7 @@ func TestBugApp(t *testing.T) { }, { args: []string{"bug", "-skip-browser"}, - stdoutShouldContain: "go version go1.", + stdoutShouldContain: "Go version: go1.", }, } testMainCaseRun(t, tc)