From 190bffa48752997fb0f7f59dc4d7a80f1238ce1f Mon Sep 17 00:00:00 2001 From: Greg Sabino Mullane Date: Sat, 9 Jan 2010 14:20:03 -0500 Subject: [PATCH] Fix test planning error. --- t/99_pod.t | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/t/99_pod.t b/t/99_pod.t index 3cd7bdef5..985360b62 100644 --- a/t/99_pod.t +++ b/t/99_pod.t @@ -5,11 +5,14 @@ use 5.006; use strict; use warnings; -use Test::More tests => 2; +use Test::More; if (!$ENV{RELEASE_TESTING}) { plan (skip_all => 'Test skipped unless environment variable RELEASE_TESTING is set'); } +else { + plan tests => 2; +} my $PODVERSION = '0.95'; eval { -- 2.39.5