Skip to content

Commit

Permalink
Merge pull request #449 from Ensembl/bugfix/transcript-support-operat…
Browse files Browse the repository at this point in the history
…or-106

Fixed cmp_ok error when '=' ==> '=='
  • Loading branch information
marcoooo committed Jan 21, 2022
2 parents 3410561 + 6350a42 commit 409c7e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Bio/EnsEMBL/DataCheck/Checks/TranscriptSupport.pm
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ sub tests {
my $desc_1b = "is_canonical, genecode_basic exists in transcript_attrib set";
my $detail_desc;
# Expect exactly two lines returned even if zero lines, one per attrib.code
cmp_ok(scalar @$attribs_count, '=', 2, $desc_1b);
cmp_ok(scalar @$attribs_count, '==', 2, $desc_1b);
is_rows_zero($self->dba, $sql_1c, $desc_1c);
foreach my $attrib_count (@$attribs_count) {
my ($count, $code) = @$attrib_count;
Expand Down

0 comments on commit 409c7e6

Please sign in to comment.