diff options
author | lpsolit%gmail.com <> | 2006-08-15 02:45:15 +0000 |
---|---|---|
committer | lpsolit%gmail.com <> | 2006-08-15 02:45:15 +0000 |
commit | 54641d0e624239fdbe1c9e6dc724b977f2aeebbb (patch) | |
tree | d61d82e7e7e12d04a65df74fbf508d98c908b702 /t | |
parent | 10ece7637657f06eea27bb1ab06da35ca8a78765 (diff) | |
download | bugs-54641d0e624239fdbe1c9e6dc724b977f2aeebbb.tar bugs-54641d0e624239fdbe1c9e6dc724b977f2aeebbb.tar.gz bugs-54641d0e624239fdbe1c9e6dc724b977f2aeebbb.tar.bz2 bugs-54641d0e624239fdbe1c9e6dc724b977f2aeebbb.tar.xz bugs-54641d0e624239fdbe1c9e6dc724b977f2aeebbb.zip |
Bug 275636: Templatise 'newchangedmail' email (BugMail) - Patch by André Batosti <batosti@async.com.br> r=LpSolit a=myk
Diffstat (limited to 't')
-rw-r--r-- | t/009bugwords.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/009bugwords.t b/t/009bugwords.t index 9249ba4ac..5b1a9d6ba 100644 --- a/t/009bugwords.t +++ b/t/009bugwords.t @@ -77,7 +77,7 @@ foreach my $file (@testitems) { } # "Bugzilla" - if (grep /Bugzilla[^_]/, $text) { + if (grep /(?<!X\-)Bugzilla(?!_)/, $text) { # Exclude JS comments, hyperlinks, USE and variable assignment. unless (grep /(\/\/.*|org.*>|USE |= )Bugzilla/, $text) { push(@errors, [$lineno, $text]); |