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

(-)a/t/db_dependent/ILSDI_Services.t (+2 lines)
Lines 47-52 subtest 'AuthenticatePatron test' => sub { Link Here
47
47
48
    $schema->storage->txn_begin;
48
    $schema->storage->txn_begin;
49
49
50
    t::lib::Mocks::mock_preference( 'TrackLastPatronActivityTriggers', 'connection' );
51
50
    my $plain_password = 'tomasito';
52
    my $plain_password = 'tomasito';
51
53
52
    $builder->build({
54
    $builder->build({
(-)a/t/db_dependent/SIP/Message.t (-2 / +4 lines)
Lines 189-198 subtest 'hold_patron_name() tests' => sub { Link Here
189
189
190
subtest 'Lastseen response' => sub {
190
subtest 'Lastseen response' => sub {
191
191
192
    plan tests => 6;
193
192
    my $schema = Koha::Database->new->schema;
194
    my $schema = Koha::Database->new->schema;
193
    $schema->storage->txn_begin;
195
    $schema->storage->txn_begin;
194
196
195
    plan tests => 6;
197
    t::lib::Mocks::mock_preference( 'TrackLastPatronActivityTriggers', 'connection' );
198
196
    my $builder = t::lib::TestBuilder->new();
199
    my $builder = t::lib::TestBuilder->new();
197
    my $branchcode = $builder->build({ source => 'Branch' })->{branchcode};
200
    my $branchcode = $builder->build({ source => 'Branch' })->{branchcode};
198
    my ( $response, $findpatron );
201
    my ( $response, $findpatron );
199
- 

Return to bug 15504