diff options
author | rjray <devnull@localhost> | 2002-04-11 22:38:07 +0000 |
---|---|---|
committer | rjray <devnull@localhost> | 2002-04-11 22:38:07 +0000 |
commit | ef7f4a88db5e38d5a9832cd5d52e9d5ff126ce7d (patch) | |
tree | 65a4d29108700dddc9ea98b8d7611abe26da3c8d /Perl-RPM | |
parent | 8a44e3aba9d7c316bcf3f37646e25ab9ab9c3b76 (diff) | |
download | librpm-tizen-ef7f4a88db5e38d5a9832cd5d52e9d5ff126ce7d.tar.gz librpm-tizen-ef7f4a88db5e38d5a9832cd5d52e9d5ff126ce7d.tar.bz2 librpm-tizen-ef7f4a88db5e38d5a9832cd5d52e9d5ff126ce7d.zip |
Switched the order of preference in choosing a package to use as a control for
testing. The kernel package might have more than one instance on the system,
which breaks some of the tests. The rpm package should be OK.
CVS patchset: 5392
CVS date: 2002/04/11 22:38:07
Diffstat (limited to 'Perl-RPM')
-rwxr-xr-x | Perl-RPM/t/02_headers.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Perl-RPM/t/02_headers.t b/Perl-RPM/t/02_headers.t index 0ecceac86..f925edc56 100755 --- a/Perl-RPM/t/02_headers.t +++ b/Perl-RPM/t/02_headers.t @@ -11,7 +11,7 @@ tie %DB, "RPM::Database" or die "$RPM::err"; # # Find a package to use for package existence and data integrity testing. # -for (qw(kernel rpm inetd bash)) +for (qw(rpm kernel inetd bash)) { $test_pack = $_, last if (exists $DB{$_}); } |