|
Lines 58-64
subtest 'Testing Patron Status Request V2' => sub {
Link Here
|
| 58 |
subtest 'Testing Patron Info Request V2' => sub { |
58 |
subtest 'Testing Patron Info Request V2' => sub { |
| 59 |
my $schema = Koha::Database->new->schema; |
59 |
my $schema = Koha::Database->new->schema; |
| 60 |
$schema->storage->txn_begin; |
60 |
$schema->storage->txn_begin; |
| 61 |
plan tests => 18; |
61 |
plan tests => 17; |
| 62 |
$C4::SIP::Sip::protocol_version = 2; |
62 |
$C4::SIP::Sip::protocol_version = 2; |
| 63 |
test_request_patron_info_v2(); |
63 |
test_request_patron_info_v2(); |
| 64 |
$schema->storage->txn_rollback; |
64 |
$schema->storage->txn_rollback; |
| 65 |
- |
|
|