diff options
author | ivan <ivan> | 2011-04-18 23:15:19 +0000 |
---|---|---|
committer | ivan <ivan> | 2011-04-18 23:15:19 +0000 |
commit | 75162bb14b3e38d66617077843f4dfdcaf09d5c4 (patch) | |
tree | d89dd49a476cf2f0859ed6a0adc2992ea6d69d04 /rt/t/web/compilation_errors.t | |
parent | fc6209f398899f0211cfcedeb81a3cd65e04a941 (diff) |
import rt 3.8.10
Diffstat (limited to 'rt/t/web/compilation_errors.t')
-rw-r--r-- | rt/t/web/compilation_errors.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rt/t/web/compilation_errors.t b/rt/t/web/compilation_errors.t index 4fd9c40e9..36a006890 100644 --- a/rt/t/web/compilation_errors.t +++ b/rt/t/web/compilation_errors.t @@ -5,7 +5,7 @@ use Test::More; use File::Find; BEGIN { sub wanted { - -f && /\.html$/ && $_ !~ /Logout.html$/; + -f && /\.html$/ && $_ !~ /Logout.html$/ && $File::Find::dir !~ /RichText/; } my $tests = 4; find( sub { wanted() and $tests += 4 }, 'share/html/' ); |