From: Dave Rolsky Date: Tue, 26 Oct 2010 17:33:52 +0000 (-0500) Subject: Small style tweak X-Git-Tag: v0.10~2 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FPackage-DeprecationManager.git;a=commitdiff_plain;h=4e6a1083f00f058f1bede659de27493020fa5316 Small style tweak --- diff --git a/t/basic.t b/t/basic.t index 0d8ecc0..1032d4a 100644 --- a/t/basic.t +++ b/t/basic.t @@ -9,12 +9,14 @@ use Test::Requires { }; { - like exception { - eval 'package Foo; use Package::DeprecationManager;'; - die $@ if $@; - }, - qr/^\QYou must provide a hash reference -deprecations parameter when importing Package::DeprecationManager/, - 'must provide a set of deprecations when using Package::DeprecationManager'; + like( + exception { + eval 'package Foo; use Package::DeprecationManager;'; + die $@ if $@; + }, + qr/^\QYou must provide a hash reference -deprecations parameter when importing Package::DeprecationManager/, + 'must provide a set of deprecations when using Package::DeprecationManager' + ); } {