Skip to content

Commit

Permalink
rename: $FIXTURE -> $FIXTURES
Browse files Browse the repository at this point in the history
  • Loading branch information
Madskill committed Oct 21, 2018
1 parent 8f92e4b commit 726ff7d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions t/data_dpath_path_unescape.t
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use Test::More tests => 6;

use_ok('Data::DPath::Path');

my $FIXTURE = [
my $FIXTURES = [
{
name => 'double quote',
string => '\\"',
Expand Down Expand Up @@ -36,6 +36,6 @@ my $FIXTURE = [
},
];

foreach my $test (@$FIXTURE) {
foreach my $test (@$FIXTURES) {
is(Data::DPath::Path::unescape($test->{'string'}), $test->{'result'}, $test->{'name'});
}

0 comments on commit 726ff7d

Please sign in to comment.