diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2018-07-02 16:04:09 +0200 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2018-07-02 16:04:09 +0200 |
commit | 42a344055fbb786cfbf9f3f163356081783c19fb (patch) | |
tree | da47dba84aaf00922af2886e3b1cd60e3d22dd05 /t/superuser--file-conflicts.t | |
parent | 8398de7b4480debefef750d8734a9982cd48d3ea (diff) | |
download | urpmi-42a344055fbb786cfbf9f3f163356081783c19fb.tar urpmi-42a344055fbb786cfbf9f3f163356081783c19fb.tar.gz urpmi-42a344055fbb786cfbf9f3f163356081783c19fb.tar.bz2 urpmi-42a344055fbb786cfbf9f3f163356081783c19fb.tar.xz urpmi-42a344055fbb786cfbf9f3f163356081783c19fb.zip |
perl_checker cleanups
Diffstat (limited to 't/superuser--file-conflicts.t')
-rw-r--r-- | t/superuser--file-conflicts.t | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/t/superuser--file-conflicts.t b/t/superuser--file-conflicts.t index 6528d2c2..eaaa0550 100644 --- a/t/superuser--file-conflicts.t +++ b/t/superuser--file-conflicts.t @@ -33,7 +33,7 @@ test_rpm_different_transactions(); test_urpmi_same_transaction(); test_urpmi_different_transactions(); -sub test_rpm_same_transaction { +sub test_rpm_same_transaction() { test_rpm_i_fail('a', 'b'); check_nothing_installed(); @@ -57,7 +57,7 @@ sub test_rpm_same_transaction { check_installed_and_remove('h', 'i'); } -sub test_rpm_different_transactions { +sub test_rpm_different_transactions() { test_rpm_i_succeeds('a'); test_rpm_i_fail('b'); check_installed_names('a'); @@ -103,7 +103,7 @@ sub test_rpm_different_transactions { check_installed_and_remove('h', 'i'); } -sub test_urpmi_same_transaction { +sub test_urpmi_same_transaction() { test_urpmi_fail('a b'); check_nothing_installed(); @@ -126,7 +126,7 @@ sub test_urpmi_same_transaction { check_installed_and_remove('h', 'i'); } -sub test_urpmi_different_transactions { +sub test_urpmi_different_transactions() { urpmi('a'); test_urpmi_fail('b'); check_installed_names('a'); |