summaryrefslogtreecommitdiff
path: root/rt/t/web/compilation_errors.t
diff options
context:
space:
mode:
Diffstat (limited to 'rt/t/web/compilation_errors.t')
-rw-r--r--rt/t/web/compilation_errors.t2
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/' );