diff options
Diffstat (limited to 't/superuser--handle-conflict-deps.t')
-rw-r--r-- | t/superuser--handle-conflict-deps.t | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/superuser--handle-conflict-deps.t b/t/superuser--handle-conflict-deps.t index e5c45a3e..5a372cba 100644 --- a/t/superuser--handle-conflict-deps.t +++ b/t/superuser--handle-conflict-deps.t @@ -38,7 +38,7 @@ sub test_conflict_on_upgrade { } sub test_conflict_on_install { - urpmi('--auto a b'); + urpmi_partial('--auto a b'); # either a or b is chosen, depending on hdlist order; both are valid if (system("rpm -q --quiet --root $::pwd/root a") == 0) { check_installed_and_remove('a'); @@ -46,7 +46,7 @@ sub test_conflict_on_install { check_installed_and_remove('b', 'b-sub'); } - urpmi('--auto f g'); # test for bug #52135 + urpmi_partial('--auto f g'); # test for bug #52135 # either f or g is chosen, depending on hdlist order; both are valid if (system("rpm -q --quiet --root $::pwd/root f") == 0) { check_installed_and_remove('f'); |