diff options
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | t/helper.pm | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -1,3 +1,4 @@ +- fix testsuite - unrequested package list management (for orphans) (mga#7167): o do not wrongly tell we updated the unrequested package list when we didn't (eg: when not having the proper rights such as running urpmq as !root) diff --git a/t/helper.pm b/t/helper.pm index ba625ea8..1980abb1 100644 --- a/t/helper.pm +++ b/t/helper.pm @@ -68,7 +68,7 @@ sub urpmi_cmd() { urpm_cmd('urpmi') } sub urpmi_addmedia { my ($para) = @_; - system_(urpm_cmd('urpmi.addmedia') . " $para"); + system_(urpm_cmd('urpmi.addmedia --no-verify-rpm') . " $para"); } sub urpmi_removemedia { my ($para) = @_; |