From: Peter Rabbitson Date: Thu, 30 Sep 2010 09:59:46 +0000 (+0200) Subject: Remove deprecated use of qw// as (qw//) X-Git-Tag: v0.08124~61 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=dbsrgits%2FDBIx-Class.git;a=commitdiff_plain;h=6ebac5d65f768659de4fd3f32c0bb24730818a30 Remove deprecated use of qw// as (qw//) --- diff --git a/t/20setuperrors.t b/t/20setuperrors.t index 25e8f32..769eaf3 100644 --- a/t/20setuperrors.t +++ b/t/20setuperrors.t @@ -10,7 +10,7 @@ throws_ok ( use base 'DBIx::Class::Core'; __PACKAGE__->table('buggy_table'); - __PACKAGE__->columns qw/this doesnt work as expected/; + __PACKAGE__->columns( qw/this doesnt work as expected/ ); }, qr/\bcolumns\(\) is a read-only/, 'columns() error when apparently misused',