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

(-)a/t/db_dependent/selenium/01-installation.t (-3 / +2 lines)
Lines 22-28 Link Here
22
22
23
use Modern::Perl;
23
use Modern::Perl;
24
24
25
use Test::More tests => 3;
25
use Test::More tests => 2;
26
26
27
use t::lib::Selenium;
27
use t::lib::Selenium;
28
use C4::Context;
28
use C4::Context;
Lines 53-59 SKIP: { Link Here
53
    skip "This test must be run with an empty DB. We are using KOHA_TESTING that is set by our CI\nIf you really want to run it, set this env var.", 2 unless $ENV{KOHA_TESTING};
53
    skip "This test must be run with an empty DB. We are using KOHA_TESTING that is set by our CI\nIf you really want to run it, set this env var.", 2 unless $ENV{KOHA_TESTING};
54
54
55
    my $dbh = eval { C4::Context->dbh; };
55
    my $dbh = eval { C4::Context->dbh; };
56
    skip "Tests won't run if the database does not exist", 2 if $@;
56
    skip "Tests won't run if the database does not exist", 3 if $@;
57
57
58
    {
58
    {
59
        my $dup_err;
59
        my $dup_err;
60
- 

Return to bug 38944