Skip to content

Commit

Permalink
use preferred variable for making version checks
Browse files Browse the repository at this point in the history
  • Loading branch information
karenetheridge committed Nov 2, 2016
1 parent caa4068 commit 74c5fed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/application_client_test.t
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use warnings;
# different ways so we can test how we interact with it.

use Test::More;
BEGIN { plan skip_all => 'this example requires perl 5.10' if $^V < 5.010; }
BEGIN { plan skip_all => 'this example requires perl 5.10' if "$]" < '5.010'; }
use Test::Needs qw(JSON::MaybeXS Moose);
use Test::Warnings 0.009 ':all';
use Test::LWP::UserAgent;
Expand Down

0 comments on commit 74c5fed

Please sign in to comment.