Skip to content

Commit

Permalink
test: fix TestDownloadDeps after #3534 (#3565)
Browse files Browse the repository at this point in the history
  • Loading branch information
thehowl authored Jan 20, 2025
1 parent fc40183 commit d95ee04
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions gnovm/cmd/gno/download_deps_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,10 @@ func TestDownloadDeps(t *testing.T) {
},
},
},
requirements: []string{"avl"},
requirements: []string{"avl", "ufmt"},
ioErrContains: []string{
"gno: downloading gno.land/p/demo/avl",
"gno: downloading gno.land/p/demo/ufmt",
},
}, {
desc: "fetch_gno.land/p/demo/blog6",
Expand Down Expand Up @@ -80,9 +81,10 @@ func TestDownloadDeps(t *testing.T) {
New: module.Version{Path: "gno.land/p/demo/avl"},
}},
},
requirements: []string{"avl"},
requirements: []string{"avl", "ufmt"},
ioErrContains: []string{
"gno: downloading gno.land/p/demo/avl",
"gno: downloading gno.land/p/demo/ufmt",
},
}, {
desc: "fetch_replace_local",
Expand Down

0 comments on commit d95ee04

Please sign in to comment.