diff options
Diffstat (limited to 't/superuser--exclude.t')
-rw-r--r-- | t/superuser--exclude.t | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/superuser--exclude.t b/t/superuser--exclude.t index a59a2c32..a2ab10b2 100644 --- a/t/superuser--exclude.t +++ b/t/superuser--exclude.t @@ -42,7 +42,7 @@ sub set_install_langs_macro { mkdir "$::pwd/root/etc/rpm"; my $macros_file = "$::pwd/root/etc/rpm/macros"; system("echo \%_install_langs $langs > $macros_file"); - ok(-e $macros_file); + ok(-e $macros_file, "macros file exists"); } sub test_rpm_cmdline { @@ -58,7 +58,7 @@ sub test_urpmi_cmdline { my ($option, $want) = @_; urpmi("$option $name"); - check("urpmi $option", $want); + check("urpmi $option", $want), "have $want"; urpme($name); check('rpm -e', []); } |