We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
./v -d network test cmd/tools/vpm
1 parent 44a4975 commit bdeef49Copy full SHA for bdeef49
cmd/tools/vpm/install_version_test.v
@@ -88,7 +88,9 @@ fn test_install_from_git_url_with_version_tag() {
88
res = cmd_fail(@LOCATION, '${vexe} install -f ${url}@${tag}')
89
// Install invalid version verbose.
90
res = cmd_fail(@LOCATION, '${vexe} install -f -v ${url}@${tag}')
91
- assert res.output.contains('Could not find remote branch ${tag} to clone.'), res.output
+ not_found := res.output.contains('Could not find remote branch ${tag} to clone.')
92
+ || res.output.contains('Remote branch ${tag} not found')
93
+ assert not_found, res.output
94
// Install from GitLab.
95
url = 'https://gitlab.com/tobealive/webview'
96
tag = 'v0.6.0'
0 commit comments