Bugzilla – Attachment 62926 Details for
Bug 18494
Fix Letters.t (follow-up of 15702)
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 18494: Pass a code, not hash & Fix double commas
Bug-18494-Pass-a-code-not-hash--Fix-double-commas.patch (text/plain), 1.16 KB, created by
Mark Tompsett
on 2017-05-01 16:48:14 UTC
(
hide
)
Description:
Bug 18494: Pass a code, not hash & Fix double commas
Filename:
MIME Type:
Creator:
Mark Tompsett
Created:
2017-05-01 16:48:14 UTC
Size:
1.16 KB
patch
obsolete
>From 66cca3393d2a647b20a94664dc4135a2b92e8afa Mon Sep 17 00:00:00 2001 >From: Mark Tompsett <mtompset@hotmail.com> >Date: Mon, 1 May 2017 12:46:20 -0400 >Subject: [PATCH] Bug 18494: Pass a code, not hash & Fix double commas > >TEST PLAN >--------- >1) prove -v t/db_dependent/Letters.t > -- fails at test 5 or so. >2) apply patch >3) run step 1 > -- success >4) run koha qa test tools >--- > t/db_dependent/Letters.t | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > >diff --git a/t/db_dependent/Letters.t b/t/db_dependent/Letters.t >index 33f7af4..e1d67a6 100644 >--- a/t/db_dependent/Letters.t >+++ b/t/db_dependent/Letters.t >@@ -62,12 +62,12 @@ $dbh->do(q|DELETE FROM message_transport_types|); > my $library = $builder->build({ > source => 'Branch', > }); >-my $patron_category = $builder->build({ source => 'Category' }); >+my $patron_category = $builder->build({ source => 'Category' })->{categorycode}; > my $date = dt_from_string; > my $borrowernumber = AddMember( > firstname => 'Jane', > surname => 'Smith', >- categorycode => $patron_category,, >+ categorycode => $patron_category, > branchcode => $library->{branchcode}, > dateofbirth => $date, > ); >-- >2.1.4
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 18494
:
62689
|
62706
|
62707
|
62749
|
62926
|
62954