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

(-)a/t/Koha/Object/Message.t (-2 / +1 lines)
Lines 52-56 subtest 'new() tests' => sub { Link Here
52
        'Koha::Exceptions::MissingParameter',
52
        'Koha::Exceptions::MissingParameter',
53
        'Exception thrown if required parameter missing';
53
        'Exception thrown if required parameter missing';
54
54
55
    is( "$@", "Mandatory parameter missing: 'message'", 'Expected exception message' );
55
    like( "$@", qr/Mandatory parameter missing: 'message'/, 'Expected exception message' );
56
};
56
};
57
- 

Return to bug 29857