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

(-)a/t/db_dependent/Circulation/GetHardDueDate.t (-2 lines)
Lines 53-59 my $samplebranch1 = { Link Here
53
    branchemail    => 'sample email',
53
    branchemail    => 'sample email',
54
    branchurl      => 'sample url',
54
    branchurl      => 'sample url',
55
    branchip       => 'sample ip',
55
    branchip       => 'sample ip',
56
    opac_info      => 'sample opac',
57
};
56
};
58
my $samplebranch2 = {
57
my $samplebranch2 = {
59
    branchcode     => 'SAB2',
58
    branchcode     => 'SAB2',
Lines 70-76 my $samplebranch2 = { Link Here
70
    branchemail    => 'sample email2',
69
    branchemail    => 'sample email2',
71
    branchurl      => 'sample url2',
70
    branchurl      => 'sample url2',
72
    branchip       => 'sample ip2',
71
    branchip       => 'sample ip2',
73
    opac_info      => 'sample opac2',
74
};
72
};
75
Koha::Library->new($samplebranch1)->store;
73
Koha::Library->new($samplebranch1)->store;
76
Koha::Library->new($samplebranch2)->store;
74
Koha::Library->new($samplebranch2)->store;
(-)a/t/db_dependent/Circulation/OfflineOperation.t (-1 lines)
Lines 48-54 my $samplebranch1 = { Link Here
48
    branchemail    => 'sample email',
48
    branchemail    => 'sample email',
49
    branchurl      => 'sample url',
49
    branchurl      => 'sample url',
50
    branchip       => 'sample ip',
50
    branchip       => 'sample ip',
51
    opac_info      => 'sample opac',
52
};
51
};
53
Koha::Library->new($samplebranch1)->store;
52
Koha::Library->new($samplebranch1)->store;
54
53
(-)a/t/db_dependent/RotatingCollections.t (-1 lines)
Lines 191-197 my $samplebranch = { Link Here
191
    branchurl      => 'sample url',
191
    branchurl      => 'sample url',
192
    branchip       => 'sample ip',
192
    branchip       => 'sample ip',
193
    branchnotes    => 'sample note',
193
    branchnotes    => 'sample note',
194
    opac_info      => 'sample opac',
195
};
194
};
196
Koha::Library->new($samplebranch)->store;
195
Koha::Library->new($samplebranch)->store;
197
my ( $transferred, $messages ) = TransferCollection( $collection_id1, $samplebranch->{branchcode} );
196
my ( $transferred, $messages ) = TransferCollection( $collection_id1, $samplebranch->{branchcode} );
(-)a/t/db_dependent/api/v1/libraries.t (-2 lines)
Lines 83-89 subtest 'list() tests' => sub { Link Here
83
            url               => 'branchurl',
83
            url               => 'branchurl',
84
            ip                => 'branchip',
84
            ip                => 'branchip',
85
            notes             => 'branchnotes',
85
            notes             => 'branchnotes',
86
            opac_info         => 'opac_info',
87
        };
86
        };
88
87
89
        my $size = keys %{$fields};
88
        my $size = keys %{$fields};
90
- 

Return to bug 29144