[Koha-bugs] [Bug 18494] New: Fix Letters.t (follow-up of 5260)

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Tue Apr 25 17:23:18 CEST 2017


https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=18494

            Bug ID: 18494
           Summary: Fix Letters.t (follow-up of 5260)
 Change sponsored?: ---
           Product: Koha
           Version: unspecified
          Hardware: All
                OS: All
            Status: NEW
          Severity: enhancement
          Priority: P5 - low
         Component: Test Suite
          Assignee: chris at bigballofwax.co.nz
          Reporter: lari.taskula at jns.fi
        QA Contact: gmcharlt at gmail.com

koha at kohacommunity:~/kohaclone$ perl t/db_dependent/Letters.t
1..81
ok 1 - use C4::Context;
ok 2 - use C4::Members;
ok 3 - use C4::Acquisition;
ok 4 - use C4::Biblio;
ok 5 - use C4::Letters;
Can't call method "get_expiry_date" on an undefined value at
/home/koha/kohaclone/C4/Members.pm line 465.
# Looks like your test exited with 7 just after 5.

Problem is at line:
my $patron_category = $builder->build({ source => 'Category' });

Change to:
my $patron_category = $builder->build({ source => 'Category'
})->{categorycode};

-- 
You are receiving this mail because:
You are watching all bug changes.


More information about the Koha-bugs mailing list