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.
This commit is contained in:
Adam Williamson 2016-05-06 13:37:19 -07:00
parent dc1f3dcdf3
commit 92ba718de3
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}