Skip to content

Commit

Permalink
Fixed wrong lives_and test syntax in fastq test
Browse files Browse the repository at this point in the history
  • Loading branch information
fangly committed Feb 28, 2012
1 parent 65261c6 commit c2eecf4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions t/SeqIO/fastq.t
Expand Up @@ -424,11 +424,11 @@ for my $example (sort keys %error) {

# fastq

my $in = Bio::SeqIO->new(-format => "fastq",
my $in = Bio::SeqIO->new(-format => 'fastq',
-file => test_input_file('fastq', 'zero_qual.fastq'),
-verbose => 2); #strictest level
-verbose => 2); # strictest level

lives_and {my $seq = $in->next_seq;
is($seq->seq, 'G');}, 'edge case; single 0 in quality fails';
is($seq->seq, 'G');} 'edge case; single 0 in quality fails';


0 comments on commit c2eecf4

Please sign in to comment.