Skip to content

Commit d84289a

Browse files
committed
reintroducing tags in test
1 parent 051317b commit d84289a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

‎test/test_lib.py‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -381,12 +381,12 @@ def test_install_with_git_url_fragment_as_branch(run_command, data_dir, download
381381
assert res.failed
382382

383383
# Verifies library is installed in expected path
384-
res = run_command(["lib", "install", "--git-url", git_url], custom_env=env)
384+
res = run_command(["lib", "install", "--git-url", git_url + "#0.16.0"], custom_env=env)
385385
assert res.ok
386386
assert lib_install_dir.exists()
387387

388388
# Reinstall library at an existing ref
389-
res = run_command(["lib", "install", "--git-url", git_url], custom_env=env)
389+
res = run_command(["lib", "install", "--git-url", git_url + "#master"], custom_env=env)
390390
assert res.ok
391391

392392
# Verifies library remains installed

0 commit comments

Comments
 (0)