Skip to content
Snippets Groups Projects
Commit 7eceeb73 authored by Graham McVicker's avatar Graham McVicker
Browse files

avoid perl warning

parent aaae6a8b
No related branches found
No related tags found
No related merge requests found
......@@ -155,7 +155,7 @@ ok(${$dbc2->ref_count()} == 3 && $dbc3->ref_count() == $dbc->ref_count());
# disconnect original,
# use copy with shared handle (that shouldn't have been disconnected)
#
my $dbc2 = Bio::EnsEMBL::DBSQL::DBConnection->new(-dbconn => $dbc);
$dbc2 = Bio::EnsEMBL::DBSQL::DBConnection->new(-dbconn => $dbc);
$sth = $dbc2->prepare('SELECT * from gene limit 1');
$sth->execute;
ok($sth->rows);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment