http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12264
Bug ID: 12264
Summary: Tiny typo in t/db_dependent/Items.t
Change sponsored?: ---
Product: Koha
Version: master
Hardware: All
OS: All
Status: NEW
Severity: trivial
Priority: P5 - low
Component: Test Suite
Assignee: [email protected]
Reporter: [email protected]
QA Contact: [email protected]
t/db_dependent/Items.t has these lines:
172 $schema->resultset('Systempreference')->update_or_create({ variable =>
'item-level_itypes', value => 0 });
173 ok( $item->effective_itemtype() eq 'BIB_LEVEL', '$item->itemtype()
returns biblioitem.itemtype when item-level_itypes is disabled' );
174
175 $schema->resultset('Systempreference')->update_or_create({ variable =>
'item-level_itypes', value => 1 });
176 ok( $item->effective_itemtype() eq 'ITEM_LEVEL', '$item->itemtype()
returns items.itype when item-level_itypes is disabled' );
I believe the last line should be "...when item-level_itypes is enabled". No
practical impact, but it might be confusing to someone at some time.
--
You are receiving this mail because:
You are watching all bug changes.
_______________________________________________
Koha-bugs mailing list
[email protected]
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/