From 20de43d3034ec586969afca80b4fd86708142401 Mon Sep 17 00:00:00 2001 From: Rafael Garcia-Suarez Date: Tue, 23 May 2006 07:20:15 +0000 Subject: [PATCH] Fix a syntax error in test p4raw-id: //depot/perl@28287 --- lib/Text/Balanced/t/00-load.t | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Text/Balanced/t/00-load.t b/lib/Text/Balanced/t/00-load.t index d4dfa71..a8268a7 100755 --- a/lib/Text/Balanced/t/00-load.t +++ b/lib/Text/Balanced/t/00-load.t @@ -2,6 +2,6 @@ use Test::More tests => 1; BEGIN { use_ok( 'Text::Balanced' ); -diag( "Testing Text::Balanced $Text::Balanced::VERSION" ); - unless $ENV{PERL_CORE} +diag( "Testing Text::Balanced $Text::Balanced::VERSION" ) + unless $ENV{PERL_CORE}; } -- 2.7.4