aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPer Øyvind Karlsen <peroyvind@mandriva.org>2011-01-23 22:45:19 +0000
committerPer Øyvind Karlsen <peroyvind@mandriva.org>2011-01-23 22:45:19 +0000
commit7a1561f6471f67a469c73e32c0856cc486ced812 (patch)
tree924e553806165d1fe81e7fa996cb8e9547972811
parent82f2be17b736b3225b07bfa3fef0f399532e74fe (diff)
downloadperl-URPM-7a1561f6471f67a469c73e32c0856cc486ced812.tar
perl-URPM-7a1561f6471f67a469c73e32c0856cc486ced812.tar.gz
perl-URPM-7a1561f6471f67a469c73e32c0856cc486ced812.tar.bz2
perl-URPM-7a1561f6471f67a469c73e32c0856cc486ced812.tar.xz
perl-URPM-7a1561f6471f67a469c73e32c0856cc486ced812.zip
fix test skipping
-rw-r--r--t/synthesis.t6
1 files changed, 3 insertions, 3 deletions
diff --git a/t/synthesis.t b/t/synthesis.t
index ea875bd..a662a25 100644
--- a/t/synthesis.t
+++ b/t/synthesis.t
@@ -151,13 +151,13 @@ ok(@provides == 1);
ok($provides[0] eq 'glibc-devel');
SKIP: {
- my $urpm = new URPM;
-
my $synthesis = "res/synthesis.hdlist_distepoch.xz";
if (!(-r $synthesis)) {
- skip "$synthesis missing, only found in svn", 6;
+ skip "$synthesis missing, only found in svn", 1;
}
+ my $urpm = new URPM;
+
$urpm->parse_synthesis($synthesis);
my $errors = 0;