ITOPSENG-101 add hardcoded download path changes for now till testaid is fixed

This commit is contained in:
Brett Meehan
2019-11-14 14:34:11 +11:00
parent 39326a207b
commit aea07909b0
13 changed files with 26 additions and 26 deletions

View File

@@ -35,7 +35,7 @@ def test_latest_is_downloaded(host):
upstream_json = json.load(upstream_fd)
upstream = upstream_json['version']
installer = host.file('/media/atl/confluence/shared-home/downloads/confluence.'+upstream+'-x64.bin')
installer = host.file('/media/atl/downloads/confluence.'+upstream+'-x64.bin')
assert installer.exists
assert installer.user == 'root'
@@ -44,6 +44,6 @@ def test_completed_lockfile(host):
upstream_json = json.load(upstream_fd)
upstream = upstream_json['version']
lockfile = host.file('/media/atl/confluence/shared-home/downloads/confluence.'+upstream+'-x64.bin_completed')
lockfile = host.file('/media/atl/downloads/confluence.'+upstream+'-x64.bin_completed')
assert lockfile.exists
assert lockfile.user == 'root'