]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 1851412: fix warning in 001compile test (#144)
authorDave Miller <justdave@bugzilla.org>
Sat, 18 Nov 2023 08:28:01 +0000 (03:28 -0500)
committerGitHub <noreply@github.com>
Sat, 18 Nov 2023 08:28:01 +0000 (03:28 -0500)
t/001compile.t

index a341dd0d2d045eab9985b06b26b883f8ce990701..e9ee6deb7dbed86a00f2eabccc70e4a65e70f946 100644 (file)
@@ -84,7 +84,9 @@ SKIP: {
 
     # Check that we have a DBI module to support the DB, if this
     # is a database module (but not Schema)
-    if ($file =~ m{Bugzilla/DB/([^/]+)\.pm$} and $file ne "Bugzilla/DB/Schema.pm") {
+    if ($file =~ m{Bugzilla/DB/([^/]+)\.pm$}
+      and $file ne "Bugzilla/DB/Schema.pm"
+      and $file ne "Bugzilla/DB/QuoteIdentifier.pm") {
       my $module = lc($1);
       my $dbd    = DB_MODULE->{$module}->{dbd}->{module};
       eval("use $dbd; 1") or skip "$file: $dbd not installed", 1;