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

avoid a couple of perl warnings

parent 2d0126d1
No related branches found
No related tags found
No related merge requests found
......@@ -88,7 +88,7 @@ $aa->remove_from_MiscFeature($mf);
#
# make sure the misc_attrib table was updated
#
my $count = $db->db_handle->selectall_arrayref
$count = $db->db_handle->selectall_arrayref
("SELECT count(*) FROM misc_attrib " .
"WHERE misc_feature_id = 1")->[0]->[0];
......
......@@ -49,7 +49,7 @@ ok($dt->value_type eq 'sum');
#
# test fetch_all
#
my @dts = @{$dta->fetch_all()};
@dts = @{$dta->fetch_all()};
ok(@dts == 2);
#
......
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