Bug 12768: Fix tests - itemtypes.rentalcharge is now decimal(28,6)
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
This commit is contained in:
parent
f254997c54
commit
276b0e2587
1 changed files with 2 additions and 2 deletions
|
@ -102,7 +102,7 @@ my $type = Koha::ItemTypes->find('type1');
|
|||
ok( defined($type), 'first result' );
|
||||
is( $type->itemtype, 'type1', 'itemtype/code' );
|
||||
is( $type->description, 'description', 'description' );
|
||||
is( $type->rentalcharge, '0.0000', 'rentalcharge' );
|
||||
is( $type->rentalcharge, '0.000000', 'rentalcharge' );
|
||||
is( $type->imageurl, 'imageurl', 'imageurl' );
|
||||
is( $type->summary, 'summary', 'summary' );
|
||||
is( $type->checkinmsg, 'checkinmsg', 'checkinmsg' );
|
||||
|
@ -112,7 +112,7 @@ $type = Koha::ItemTypes->find('type2');
|
|||
ok( defined($type), 'second result' );
|
||||
is( $type->itemtype, 'type2', 'itemtype/code' );
|
||||
is( $type->description, 'description', 'description' );
|
||||
is( $type->rentalcharge, '0.0000', 'rentalcharge' );
|
||||
is( $type->rentalcharge, '0.000000', 'rentalcharge' );
|
||||
is( $type->imageurl, 'imageurl', 'imageurl' );
|
||||
is( $type->summary, 'summary', 'summary' );
|
||||
is( $type->checkinmsg, 'checkinmsg', 'checkinmsg' );
|
||||
|
|
Loading…
Reference in a new issue