X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Finflate%2Fhri.t;h=b5e9d2f542c5e336bf2922aee2a0165cf47645dc;hb=d634850b14e7b23a617d8373a4bb8684a8db8b8a;hp=b9ca3d8c66cd1f8a8e33d4d2b88221446e226b49;hpb=f073420b2c87814662fc34fd544e29bf0883f26c;p=dbsrgits%2FDBIx-Class.git diff --git a/t/inflate/hri.t b/t/inflate/hri.t index b9ca3d8..b5e9d2f 100644 --- a/t/inflate/hri.t +++ b/t/inflate/hri.t @@ -3,11 +3,11 @@ use warnings; use Test::More; -use DBIx::Class::_Util 'modver_gt_or_eq'; +use DBIx::Class::_Util 'modver_gt_or_eq_and_lt'; use base(); BEGIN { plan skip_all => 'base.pm 2.20 (only present in perl 5.19.7) is known to break this test' - if modver_gt_or_eq(base => '2.19_01') and ! modver_gt_or_eq(base => '2.21'); + if modver_gt_or_eq_and_lt( 'base', '2.19_01', '2.21' ); } use Test::Exception;