Skip to content
Snippets Groups Projects
Commit 0d407824 authored by Alessandro Vullo's avatar Alessandro Vullo
Browse files

[ENSCORESW-2508]. Somehow (difficult to find exactly where) output is emitted...

[ENSCORESW-2508]. Somehow (difficult to find exactly where) output is emitted without newline at the end, which is
then attached the result of the test, e.g. [last line of output]ok 17 ...
TAP fails because the parsed output is expecting the ok/not ok string at the beginning of the line.
parent 18ee7423
No related branches found
No related tags found
No related merge requests found
......@@ -198,6 +198,7 @@ ok( $stored_features[0]->length() == 1000 );
# Check for fetching all features
@stored_features = @{$dfa->fetch_all()};
print "\n";
is( @stored_features, 318, 'Number of stored features');
@stored_features = @{$dfa->fetch_all('GeneDensityTest')};
ok( $stored_features[0]->length() > 1000 );
......
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