From f3c4dcb184e60c36630e8635f4542b91ff3f09ad Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Mon, 26 Jan 2026 11:40:18 +0100 Subject: [PATCH] Bug 41682: Ignore 'FrameworksLoaded' --- t/db_dependent/check_sysprefs.t | 3 +++ 1 file changed, 3 insertions(+) diff --git a/t/db_dependent/check_sysprefs.t b/t/db_dependent/check_sysprefs.t index 0e9b6a0ca08..a160dd578e2 100755 --- a/t/db_dependent/check_sysprefs.t +++ b/t/db_dependent/check_sysprefs.t @@ -149,9 +149,12 @@ sub get_syspref_from_yaml { sub check_db { my @sysprefs_from_file = @_; + # FIXME FrameworksLoaded is a temporary syspref created during the installation process + # We should either rewrite the code to avoid its need, or delete it once the installation is finished. my $sysprefs_in_db = $dbh->selectall_hashref( q{ SELECT * from systempreferences + WHERE variable <> 'FrameworksLoaded' }, 'variable' ); -- 2.43.0