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

(-)a/t/db_dependent/Koha/Object.t (-1 / +1 lines)
Lines 1000-1006 subtest 'store() tests' => sub { Link Here
1000
            'Koha::Exceptions::Object::DuplicateID',
1000
            'Koha::Exceptions::Object::DuplicateID',
1001
                'Exception is thrown correctly';
1001
                'Exception is thrown correctly';
1002
        },
1002
        },
1003
        qr{Duplicate entry.* for key 'title'}
1003
        qr{Duplicate entry.* for key '(library_groups\.)?title'}
1004
    );
1004
    );
1005
1005
1006
    is(
1006
    is(
(-)a/t/db_dependent/Koha/Patron.t (-1 / +1 lines)
Lines 405-411 subtest 'add_guarantor() tests' => sub { Link Here
405
            'Koha::Exceptions::Patron::Relationship::DuplicateRelationship',
405
            'Koha::Exceptions::Patron::Relationship::DuplicateRelationship',
406
                'Exception is thrown for duplicated relationship';
406
                'Exception is thrown for duplicated relationship';
407
        },
407
        },
408
        qr{Duplicate entry.* for key 'guarantor_guarantee_idx'}
408
        qr{Duplicate entry.* for key '(borrower_relationships\.)?guarantor_guarantee_idx'}
409
    );
409
    );
410
410
411
    $schema->storage->txn_rollback;
411
    $schema->storage->txn_rollback;
(-)a/t/db_dependent/Koha/Patron/Relationship.t (-2 / +1 lines)
Lines 117-123 subtest 'store() tests' => sub { Link Here
117
            'Koha::Exceptions::Patron::Relationship::DuplicateRelationship',
117
            'Koha::Exceptions::Patron::Relationship::DuplicateRelationship',
118
                'Exception is thrown for duplicated relationship';
118
                'Exception is thrown for duplicated relationship';
119
        },
119
        },
120
        qr{Duplicate entry.* for key 'guarantor_guarantee_idx'}
120
        qr{Duplicate entry.* for key '(borrower_relationships\.)?guarantor_guarantee_idx'}
121
    );
121
    );
122
122
123
    is(
123
    is(
124
- 

Return to bug 38944