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

(-)a/t/db_dependent/Koha/Patron/Messages.t (-2 / +1 lines)
Lines 37-43 $schema->storage->txn_begin; Link Here
37
my $builder        = t::lib::TestBuilder->new;
37
my $builder        = t::lib::TestBuilder->new;
38
my $library        = $builder->build( { source => 'Branch' } );
38
my $library        = $builder->build( { source => 'Branch' } );
39
my $patron         = $builder->build( { source => 'Borrower', values => { branchcode => $library->{branchcode} } } );
39
my $patron         = $builder->build( { source => 'Borrower', values => { branchcode => $library->{branchcode} } } );
40
my $patron_2       = Koha::Patrons->search->next;
40
my $patron_2       = $builder->build( { source => 'Borrower' } );
41
my $nb_of_logaction = get_nb_of_logactions();
41
my $nb_of_logaction = get_nb_of_logactions();
42
my $nb_of_messages = Koha::Patron::Messages->search->count;
42
my $nb_of_messages = Koha::Patron::Messages->search->count;
43
43
44
- 

Return to bug 17558