Bugzilla – Attachment 91006 Details for
Bug 23211
SIP/Transaction.t is failing randomly
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 23211: Prevent SIP/Transaction.t to fail randomly
Bug-23211-Prevent-SIPTransactiont-to-fail-randomly.patch (text/plain), 1.51 KB, created by
Jonathan Druart
on 2019-06-25 22:44:33 UTC
(
hide
)
Description:
Bug 23211: Prevent SIP/Transaction.t to fail randomly
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2019-06-25 22:44:33 UTC
Size:
1.51 KB
patch
obsolete
>From 5eebbf7ad1ba2e17d8622e995c17a50bf68713fb Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Tue, 25 Jun 2019 17:43:41 -0500 >Subject: [PATCH] Bug 23211: Prevent SIP/Transaction.t to fail randomly > >The checkout failed because patron's category is the one used for statistics (category_type=X). > >To recreate the failure: >modified: t/db_dependent/SIP/Transaction.t >@ Transaction.t:37 @ subtest fill_holds_at_checkout => sub { > plan tests => 6; > >- my $category = $builder->build({ source => 'Category' }); >+ my $category = $builder->build({ source => 'Category', value => { category_type => 'X' }}); > my $branch = $builder->build({ source => 'Branch' }); > my $borrower = $builder->build({ source => 'Borrower', value =>{ > branchcode => $branch->{branchcode}, >--- > t/db_dependent/SIP/Transaction.t | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/t/db_dependent/SIP/Transaction.t b/t/db_dependent/SIP/Transaction.t >index 0e78505cd4..076fb29c35 100755 >--- a/t/db_dependent/SIP/Transaction.t >+++ b/t/db_dependent/SIP/Transaction.t >@@ -34,7 +34,7 @@ subtest fill_holds_at_checkout => sub { > plan tests => 6; > > >- my $category = $builder->build({ source => 'Category' }); >+ my $category = $builder->build({ source => 'Category', value => { category_type => 'A' }}); > my $branch = $builder->build({ source => 'Branch' }); > my $borrower = $builder->build({ source => 'Borrower', value =>{ > branchcode => $branch->{branchcode}, >-- >2.11.0
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 23211
:
91006
|
91010