diff options
author | tomsou <soth@intracom-telecom.com> | 2017-03-30 08:16:13 +0000 |
---|---|---|
committer | Thomas Sounapoglou <soth@intracom-telecom.com> | 2017-03-30 09:55:14 +0000 |
commit | a0fe19bb8f627a3e6af105213edbf6a71a0e73ea (patch) | |
tree | 32a8d15903f9ba1901f6c7582ceef992afc279c7 | |
parent | 27f6523b80923324c00360abbd2bb85d99c0f86e (diff) |
Update url for ubuntu image downloading- testcase3
The url that the testcase3 uses to download ubuntu image
(https://cloud-images.ubuntu.com/releases/16.04/release/
ubuntu-16.04-server-cloudimg-amd64-disk1.img) is unstable.
This change updates it, using the one from the OPNFV artifact repo
JIRA: SDNVPN-133
Change-Id: Ic7265b572064f1df7ce30ab5249b1bdb61c63777
Signed-off-by: tomsou <soth@intracom-telecom.com>
(cherry picked from commit 70e78577e8736d17fe3d99c9c276d7ca9b6ea89b)
-rw-r--r-- | sdnvpn/test/functest/testcase_3.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sdnvpn/test/functest/testcase_3.py b/sdnvpn/test/functest/testcase_3.py index b7df013..09e71bd 100644 --- a/sdnvpn/test/functest/testcase_3.py +++ b/sdnvpn/test/functest/testcase_3.py @@ -138,8 +138,8 @@ def main(): if not os.path.isfile(COMMON_CONFIG.ubuntu_image_path): logger.info("Downloading image") ft_utils.download_url( - "https://cloud-images.ubuntu.com/releases/16.04/" - "release/ubuntu-16.04-server-cloudimg-amd64-disk1.img", + "http://artifacts.opnfv.org/sdnvpn/" + "ubuntu-16.04-server-cloudimg-amd64-disk1.img", "/home/opnfv/functest/data/") else: logger.info("Using old image") |