View | Details | Raw Unified | Return to bug 41682
Collapse All | Expand All

(-)a/t/db_dependent/check_sysprefs.t (-1 / +3 lines)
Lines 149-157 sub get_syspref_from_yaml { Link Here
149
sub check_db {
149
sub check_db {
150
    my @sysprefs_from_file = @_;
150
    my @sysprefs_from_file = @_;
151
151
152
    # FIXME FrameworksLoaded is a temporary syspref created during the installation process
153
    # We should either rewrite the code to avoid its need, or delete it once the installation is finished.
152
    my $sysprefs_in_db = $dbh->selectall_hashref(
154
    my $sysprefs_in_db = $dbh->selectall_hashref(
153
        q{
155
        q{
154
        SELECT * from systempreferences
156
        SELECT * from systempreferences
157
        WHERE variable <> 'FrameworksLoaded'
155
    }, 'variable'
158
    }, 'variable'
156
    );
159
    );
157
160
158
- 

Return to bug 41682