Bugzilla – Attachment 95658 Details for
Bug 24031
Add plugin hook after_hold_create
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 24031: Fix warnings
Bug-24031-Fix-warnings.patch (text/plain), 1.16 KB, created by
Kyle M Hall (khall)
on 2019-11-21 13:10:45 UTC
(
hide
)
Description:
Bug 24031: Fix warnings
Filename:
MIME Type:
Creator:
Kyle M Hall (khall)
Created:
2019-11-21 13:10:45 UTC
Size:
1.16 KB
patch
obsolete
>From 84e3044f24dea4e376ee59997abb2d85c19f2d8d Mon Sep 17 00:00:00 2001 >From: Kyle M Hall <kyle@bywatersolutions.com> >Date: Thu, 21 Nov 2019 08:08:38 -0500 >Subject: [PATCH] Bug 24031: Fix warnings > >Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> >--- > t/db_dependent/Koha/Plugins/Plugins.t | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > >diff --git a/t/db_dependent/Koha/Plugins/Plugins.t b/t/db_dependent/Koha/Plugins/Plugins.t >index ed19ecf204..e6a353ceee 100755 >--- a/t/db_dependent/Koha/Plugins/Plugins.t >+++ b/t/db_dependent/Koha/Plugins/Plugins.t >@@ -65,9 +65,9 @@ subtest 'call() tests' => sub { > is_deeply(\@responses, $expected, 'call() should return all responses from plugins'); > > # Make sure parameters are correctly passed to the plugin method >- my @responses = Koha::Plugins->call('check_password', { password => '1234' }); >+ @responses = Koha::Plugins->call('check_password', { password => '1234' }); > >- my $expected = [ { error => 0 } ]; >+ $expected = [ { error => 0 } ]; > is_deeply(\@responses, $expected, 'call() should return all responses from plugins'); > > $schema->storage->txn_rollback; >-- >2.21.0 (Apple Git-122.2)
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 24031
:
95358
|
95657
|
95658
|
98788
|
98789
|
105256
|
105257
|
105693
|
105694
|
105695
|
105696
|
105697
|
107042
|
107365