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

(-)a/t/db_dependent/Koha/Patron/Attribute.t (-1 / +4 lines)
Lines 220-225 subtest 'store() tests' => sub { Link Here
220
220
221
        plan tests => 1;
221
        plan tests => 1;
222
222
223
        $schema->storage->txn_begin;
224
223
        my $patron = $builder->build_object({ class => 'Koha::Patrons' });
225
        my $patron = $builder->build_object({ class => 'Koha::Patrons' });
224
        my $non_repeatable_type = $builder->build_object(
226
        my $non_repeatable_type = $builder->build_object(
225
            {
227
            {
Lines 246-251 subtest 'store() tests' => sub { Link Here
246
                        ->discard_changes;
248
                        ->discard_changes;
247
249
248
        is( $non_repeatable_attr->attribute, 'HEY', 'Value stored correctly' );
250
        is( $non_repeatable_attr->attribute, 'HEY', 'Value stored correctly' );
251
252
        $schema->storage->txn_rollback;
249
    };
253
    };
250
};
254
};
251
255
252
- 

Return to bug 28031