From db172903e337d182f7d2672745a6378312176745 Mon Sep 17 00:00:00 2001 From: Dave Miller Date: Sat, 18 Nov 2023 03:28:01 -0500 Subject: [PATCH] Bug 1851412: fix warning in 001compile test (#144) --- t/001compile.t | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/t/001compile.t b/t/001compile.t index a341dd0d2d..e9ee6deb7d 100644 --- a/t/001compile.t +++ b/t/001compile.t @@ -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; -- 2.47.3