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

(-)a/t/db_dependent/Koha/Item.t (-3 / +2 lines)
Lines 1137-1144 subtest 'columns_to_str' => sub { Link Here
1137
    my $s = $item->columns_to_str;
1137
    my $s = $item->columns_to_str;
1138
    is( $s->{itemlost}, 'Lost' );
1138
    is( $s->{itemlost}, 'Lost' );
1139
    is( $s->{dateaccessioned}, '2020-12-15');
1139
    is( $s->{dateaccessioned}, '2020-12-15');
1140
    is( $s->{é}, 'value é');
1140
    is( $s->{'é'}, 'value é');
1141
    is( $s->{è}, $library->branchname );
1141
    is( $s->{'è'}, $library->branchname );
1142
1142
1143
    $cache->clear_from_cache("MarcStructure-0-");
1143
    $cache->clear_from_cache("MarcStructure-0-");
1144
    $cache->clear_from_cache("MarcStructure-1-");
1144
    $cache->clear_from_cache("MarcStructure-1-");
1145
- 

Return to bug 27526