Bug 29857: (QA follow-up) Fix unit test Object.t

Unit test failling with :
    #   Failed test 'Exception message correct'
    #   at /kohadevbox/koha/t/db_dependent/Koha/Object.t line 335.
     #          got: 'Exception 'Koha::Exception' thrown 'Asked to embed items but its return value doesn't implement to_api'
    # '
    #     expected: 'Asked to embed items but its return value doesn't implement to_api'
     # Looks like you failed 1 test of 29.

Fixed by using $@->message like in other places.

prove t/db_dependent/Koha/Object.t

Signed-off-by: Fridolin Somers <fridolin.somers@biblibre.com>
This commit is contained in:
Fridolin Somers 2022-03-01 21:04:13 -10:00
parent 6ece7185b0
commit c287121471

View file

@ -333,7 +333,7 @@ subtest "to_api() tests" => sub {
"An exception is thrown if a blessed object to embed doesn't implement to_api";
is(
"$@",
$@->message,
"Asked to embed items but its return value doesn't implement to_api",
"Exception message correct"
);