Commit e1701068 by Po-Hsu Lin

python3-lxc: fix api_test.py on s390x

The api_test.py script uses Trusty release by default, which does not have s390x image. Switch to Xenial to solve this. Signed-off-by: 's avatarPo-Hsu Lin <po-hsu.lin@canonical.com>
parent f290a806
...@@ -66,7 +66,7 @@ except: ...@@ -66,7 +66,7 @@ except:
print("Creating rootfs using 'download', arch=%s" % arch) print("Creating rootfs using 'download', arch=%s" % arch)
container.create("download", 0, container.create("download", 0,
{"dist": "ubuntu", {"dist": "ubuntu",
"release": "trusty", "release": "xenial",
"arch": arch}) "arch": arch})
assert(container.defined) assert(container.defined)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment