Skip to content
Snippets Groups Projects
Commit 02a80c53 authored by Glenn Proctor's avatar Glenn Proctor
Browse files

Modifed regulatory feature tests for fetch_all -> get_all

parent 2d4cca72
No related branches found
No related tags found
No related merge requests found
......@@ -622,5 +622,5 @@ $multi->restore();
# test regulatory feature retrieval
my $rf_gene = $ga->fetch_by_dbID(18256);
#ok(@{$rf_gene->fetch_all_regulatory_features()} == 1); # non-recursive
ok(@{$rf_gene->fetch_all_regulatory_features(1)} == 2); # recursive
#ok(@{$rf_gene->get_all_regulatory_features()} == 1); # non-recursive
ok(@{$rf_gene->get_all_regulatory_features(1)} == 2); # recursive
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