summaryrefslogtreecommitdiffstats
path: root/RPM4/t/04spec.t
diff options
context:
space:
mode:
Diffstat (limited to 'RPM4/t/04spec.t')
-rw-r--r--RPM4/t/04spec.t4
1 files changed, 1 insertions, 3 deletions
diff --git a/RPM4/t/04spec.t b/RPM4/t/04spec.t
index 74b9e21..1ffccf7 100644
--- a/RPM4/t/04spec.t
+++ b/RPM4/t/04spec.t
@@ -11,8 +11,6 @@ my %info = RPM4::moduleinfo();
my $testdir = tempdir( CLEANUP => 1 );
mkdir("$testdir/$_") foreach (qw(BUILD RPMS RPMS/noarch SRPMS));
-my $passphrase = "RPM4";
-
RPM4::add_macro("_tmppath $testdir");
RPM4::add_macro("_builddir $testdir");
RPM4::add_macro("_topdir $testdir");
@@ -31,7 +29,7 @@ if ($info{Hack} eq "Yes") {
ok(! defined(RPM4::Spec->new()), "Create an empty spec object don't works");
}
ok(!defined($spec = RPM4::Spec->new("$Bin/test-rpm-1.0-1mdk.noarch.rpm")), "Loading a bad spec file");
-ok($spec = RPM4::Spec->new("$Bin/test-rpm.spec", passphrase => $passphrase), "Loading a spec file");
+ok($spec = RPM4::Spec->new("$Bin/test-rpm.spec"), "Loading a spec file");
my @rpms = $spec->binrpm;
ok(@rpms == 1, "Can find binary package");