# HG changeset patch # User Steve Kemp # Date 1208370884 -3600 # Node ID c9262aa2918a1da8ea4e3a3b80f17a354242840d # Parent fdbbc1bb5d7c1e57549800abed067f95bf4112f8 Fixed test. diff -r fdbbc1bb5d7c -r c9262aa2918a tests/perl-syntax.t --- a/tests/perl-syntax.t Wed Apr 16 19:31:23 2008 +0100 +++ b/tests/perl-syntax.t Wed Apr 16 19:34:44 2008 +0100 @@ -37,8 +37,9 @@ # Or makefiles return if ( $file =~ /Makefile/ ); - # `modules.sh` is a false positive. - return if ( $file =~ /modules.sh$/ ); + # False positives + return if ( ( $file =~ /modules.sh$/ ) || + ( $file =~ /html-validator.t/ ) ); # See if it is a perl file. my $isPerl = 0;