Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix fudging for 'skip'
... until now it could happen that plain code
lines were commented out by 'fudge'
  • Loading branch information
usev6 committed Apr 17, 2015
1 parent 2d371de commit bc9f52e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fudge
Expand Up @@ -277,7 +277,7 @@ sub fudgeblock {
}
else {
my $does = join '|', keys %DOES;
next unless /^\s*($IS|$does)/;
next unless $does ? /^\s*($IS|$does)/ : /^\s*($IS)/;
$numtests = defined $DOES{$1}? $DOES{$1} : 1;
}
$PENDING--;
Expand Down

0 comments on commit bc9f52e

Please sign in to comment.