Skip to content

Commit

Permalink
uitests: Use old Fedora URL in test suite
Browse files Browse the repository at this point in the history
the centos URL is currently broken with latest urldetect, we need to
add some info to libosinfo to cover it
  • Loading branch information
crobinso committed Apr 26, 2018
1 parent 577a636 commit 3bc7ff2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/uitests/newvm.py
Expand Up @@ -146,12 +146,12 @@ def testNewVMURL(self):
newvm.find_fuzzy("Forward", "button").click()

newvm.find("URL", "text").text = (
"http://vault.centos.org/5.5/os/x86_64/")
"https://archives.fedoraproject.org/pub/archive/fedora/linux/releases/14/Fedora/x86_64/os/")

version = newvm.find("install-os-version-label")
uiutils.check_in_loop(lambda: "Detecting" in version.text)
uiutils.check_in_loop(
lambda: version.text == "Red Hat Enterprise Linux 5.5",
lambda: version.text == "Fedora 14",
timeout=10)

newvm.find_fuzzy("Forward", "button").click()
Expand All @@ -163,7 +163,7 @@ def testNewVMURL(self):
"Creating Virtual Machine", "frame")
uiutils.check_in_loop(lambda: not progress.showing, timeout=120)

self.app.root.find_fuzzy("rhel5.5 on", "frame")
self.app.root.find_fuzzy("fedora14 on", "frame")
self.assertFalse(newvm.showing)


Expand Down

0 comments on commit 3bc7ff2

Please sign in to comment.