Bug 22563: (follow-up) Corrections for tests
[koha-equinox.git] / t / db_dependent / Circulation / NoIssuesChargeGuarantees.t
index b0ba951..df2a407 100644 (file)
@@ -75,7 +75,7 @@ is( $issuingimpossible->{DEBT_GUARANTEES} + 0, '10.00' + 0, "Patron cannot check
 
 my $accountline = Koha::Account::Lines->search({ borrowernumber => $guarantee->{borrowernumber} })->next();
 is( $accountline->amountoutstanding, "10.000000", "Found 10.00 amount outstanding" );
-is( $accountline->accounttype, "L", "Account type is L" );
+is( $accountline->accounttype, "LOST", "Account type is LOST" );
 
 my $offset = Koha::Account::Offsets->search({ debit_id => $accountline->id })->next();
 is( $offset->type, 'Lost Item', 'Got correct offset type' );