From 92ba718de378da508f16bba30d07e919b519e3d6 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Fri, 6 May 2016 13:37:19 -0700 Subject: [PATCH] dnf-plugin-system-upgrade: don't use updates-testing, 10 mins the updates-testing here was never meant to be permanent, it was only added when the plugin was very new and we knew the version in stable was busted. The test cases do not say to use u-t, so let's not. We've seen this test fail several times recently because of very slow metadata downloads at this point, so let's give it longer to run. --- tests/upgrade_preinstall.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/upgrade_preinstall.pm b/tests/upgrade_preinstall.pm index 43e53976..a86926e9 100644 --- a/tests/upgrade_preinstall.pm +++ b/tests/upgrade_preinstall.pm @@ -29,8 +29,8 @@ sub run { } $self->root_console(tty=>3); - my $update_command = 'dnf -y --enablerepo=updates-testing install dnf-plugin-system-upgrade'; - assert_script_run $update_command, 300; + my $update_command = 'dnf -y install dnf-plugin-system-upgrade'; + assert_script_run $update_command, 600; }