Skip to content

Commit

Permalink
Fixed cmp_ok error when '=' ==> '=='
Browse files Browse the repository at this point in the history
  • Loading branch information
marcoooo committed Jan 21, 2022
1 parent 38f1985 commit 507394d
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 507394d

Please sign in to comment.