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

(-)a/t/db_dependent/Koha/Object.t (-4 / +3 lines)
Lines 647-656 subtest 'store() tests' => sub { Link Here
647
        'Exception message is correct'
647
        'Exception message is correct'
648
    );
648
    );
649
649
650
    is(
650
    like(
651
       $@->duplicate_id,
651
       $@->duplicate_id,
652
       'secret',
652
       qr/(api_keys\.)?secret/,
653
       'Exception field is correct'
653
       'Exception field is correct (note that MySQL 8 is displaying the tablename)'
654
    );
654
    );
655
655
656
    $schema->storage->dbh->{PrintError} = $print_error;
656
    $schema->storage->dbh->{PrintError} = $print_error;
657
- 

Return to bug 24590