Skip to content

Commit

Permalink
syntax for hashref element access changes between Perl versions
Browse files Browse the repository at this point in the history
  • Loading branch information
ens-bwalts committed Jan 22, 2019
1 parent c55fe9a commit c25c96d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion t/02.api/overflow.t
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ is ($fetched_acr->condition_analysis_url, $long_cau, "Retrieved long condition_a
my $fetched_accu_structures = $acu_a->fetch_structures_for_job_ids($accu_funnel_job->dbID);
my $fetched_accu_hash = $fetched_accu_structures->{$accu_funnel_job->dbID};
my $fetched_struct_name = (keys(%$fetched_accu_hash))[0];
my $fetched_key_signature = (keys(%$fetched_accu_hash->{$fetched_struct_name}))[0];
my $fetched_key_signature = (keys(%{$fetched_accu_hash->{$fetched_struct_name}}))[0];

is ($fetched_struct_name, $long_struct_name, "fetched long struct_name from accu");
is ($fetched_key_signature, $long_key_signature, "fetched long key_signature from accu");
Expand Down

0 comments on commit c25c96d

Please sign in to comment.