diff options
author | Dave Miller <justdave@bugzilla.org> | 2024-04-28 00:47:08 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-28 00:47:08 -0400 |
commit | 18ba4d3977ee5ce01057e51299a40eeaaf2507cb (patch) | |
tree | 63c4cd143377a7d06a8d2313b9f24f1e4bb225c8 /t/004template.t | |
parent | 340c5f43bf00ad5723f8c91ee38c7893714c54ac (diff) | |
download | bugs-18ba4d3977ee5ce01057e51299a40eeaaf2507cb.tar bugs-18ba4d3977ee5ce01057e51299a40eeaaf2507cb.tar.gz bugs-18ba4d3977ee5ce01057e51299a40eeaaf2507cb.tar.bz2 bugs-18ba4d3977ee5ce01057e51299a40eeaaf2507cb.tar.xz bugs-18ba4d3977ee5ce01057e51299a40eeaaf2507cb.zip |
Bug 1851354: blocklist MySQL 8+, offer MariaDB (#141)
Diffstat (limited to 't/004template.t')
-rw-r--r-- | t/004template.t | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/004template.t b/t/004template.t index 760d39ac8..f336441ac 100644 --- a/t/004template.t +++ b/t/004template.t @@ -114,10 +114,10 @@ foreach my $include_path (@include_paths) { # Forbid single quotes to delimit URLs, see bug 926085. if ($data =~ /href=\\?'/) { - ok(0, "$path contains blacklisted constructs: href='...'"); + ok(0, "$path contains blocklisted constructs: href='...'"); } else { - ok(1, "$path contains no blacklisted constructs"); + ok(1, "$path contains no blocklisted constructs"); } } } |