From c92ea1b9bd2a3ed212e20df3ebf7ff1acffa1d39 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Tue, 23 Feb 2016 17:59:44 -0800 Subject: [PATCH] install_source_graphical wasn't properly switched to VERSION --- tests/install_source_graphical.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/install_source_graphical.pm b/tests/install_source_graphical.pm index 711c33ae..df92a6ee 100644 --- a/tests/install_source_graphical.pm +++ b/tests/install_source_graphical.pm @@ -27,14 +27,14 @@ sub run { # if either MIRRORLIST_GRAPHICAL or REPOSITORY_GRAPHICAL is set, type this into # the repository url input if (get_var("MIRRORLIST_GRAPHICAL")){ - $repourl = "mirrors.fedoraproject.org/mirrorlist?repo=".$fedora_release."&arch=".get_var('ARCH'); + $repourl = "mirrors.fedoraproject.org/mirrorlist?repo=fedora-".lc(get_var("VERSION"))."&arch=".get_var('ARCH'); type_string $repourl; # select as mirror list assert_and_click "anaconda_install_source_repo_select_mirrorlist"; } elsif (get_var("REPOSITORY_GRAPHICAL")){ - $repourl = get_var("REPOSITORY_GRAPHICAL")."/".$fedora_release."/".get_var("ARCH")."/os"; + $repourl = get_var("REPOSITORY_GRAPHICAL")."/".lc(get_var("VERSION"))."/".get_var("ARCH")."/os"; type_string $repourl; }