From: Tomas Cohen Arazi Date: Sun, 4 Jan 2015 13:53:35 +0000 (-0300) Subject: Bug 12896: (QA followup) use C4::Bookseller in t/db_dependent/Serials/Claims.t X-Git-Tag: v3.20.00-beta~858 X-Git-Url: http://koha-dev.rot13.org:8081/gitweb/?a=commitdiff_plain;ds=sidebyside;h=e8f5312dc7789b255d4d283750a821c51c05ebea;hp=a93fd3fe06dbdea972ea8c329ae4f77335314566;p=koha-ffzg.git Bug 12896: (QA followup) use C4::Bookseller in t/db_dependent/Serials/Claims.t As C4::Bookseller is no longer imported in C4::Acquisition the tests fail because of an undefined function call. Signed-off-by: Tomas Cohen Arazi --- diff --git a/t/db_dependent/Serials/Claims.t b/t/db_dependent/Serials/Claims.t index 83d585e545..622f91021e 100644 --- a/t/db_dependent/Serials/Claims.t +++ b/t/db_dependent/Serials/Claims.t @@ -2,6 +2,7 @@ use Modern::Perl; use Test::More tests => 13; use C4::Acquisition; +use C4::Bookseller; use C4::Budgets; use_ok('C4::Serials');