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

(-)a/t/db_dependent/Search.t (+2 lines)
Lines 192-197 $contextmodule->mock('preference', sub { Link Here
192
        return '0';
192
        return '0';
193
    } elsif ($pref eq 'OPACPlayMusicalInscripts') {
193
    } elsif ($pref eq 'OPACPlayMusicalInscripts') {
194
        return '0';
194
        return '0';
195
    } elsif ($pref eq 'Reference_NFL_Statuses') {
196
        return '0';
195
    } else {
197
    } else {
196
        warn "The syspref $pref was requested but I don't know what to say; this indicates that the test requires updating"
198
        warn "The syspref $pref was requested but I don't know what to say; this indicates that the test requires updating"
197
            unless $pref =~ m/(XSLT|item|branch|holding|image)/i;
199
            unless $pref =~ m/(XSLT|item|branch|holding|image)/i;
(-)a/t/db_dependent/zebra_config.pl (-1 / +3 lines)
Lines 36-41 make_path("$destination/var/lib/zebradb/authorities/key"); Link Here
36
make_path("$destination/var/lib/zebradb/authorities/register");
36
make_path("$destination/var/lib/zebradb/authorities/register");
37
make_path("$destination/var/lib/zebradb/authorities/shadow");
37
make_path("$destination/var/lib/zebradb/authorities/shadow");
38
make_path("$destination/var/lib/zebradb/authorities/tmp");
38
make_path("$destination/var/lib/zebradb/authorities/tmp");
39
make_path("$destination/var/log/koha");
39
make_path("$destination/var/run/zebradb");
40
make_path("$destination/var/run/zebradb");
40
41
41
$ENV{'INSTALL_BASE'} = $destination;
42
$ENV{'INSTALL_BASE'} = $destination;
Lines 48-53 $ENV{'__DB_PORT__'} = C4::Context->config('port') // '3306'; Link Here
48
$ENV{'__DB_USER__'} = C4::Context->config('user')      // 'kohaadmin';
49
$ENV{'__DB_USER__'} = C4::Context->config('user')      // 'kohaadmin';
49
$ENV{'__DB_PASS__'} = C4::Context->config('pass')      // 'katikoan';
50
$ENV{'__DB_PASS__'} = C4::Context->config('pass')      // 'katikoan';
50
51
52
$ENV{'__LOG_DIR__'} = "$destination/var/log/koha";
53
51
my @files = (
54
my @files = (
52
    "$source/etc/koha-conf.xml",
55
    "$source/etc/koha-conf.xml",
53
    "$source/etc/log4perl.conf",
56
    "$source/etc/log4perl.conf",
54
- 

Return to bug 28572