From ad1802de5485ac31533094f9b54c8cb6078d71f4 Mon Sep 17 00:00:00 2001 From: Charles Farmer Date: Fri, 19 Jan 2018 16:04:19 -0500 Subject: [PATCH] Bug 19955: Minor grammatical correction Signed-off-by: Tomas Cohen Arazi Signed-off-by: Jonathan Druart Signed-off-by: Nick Clemens --- t/db_dependent/Letters.t | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/t/db_dependent/Letters.t b/t/db_dependent/Letters.t index 88cb6647c3..48b91dc4af 100644 --- a/t/db_dependent/Letters.t +++ b/t/db_dependent/Letters.t @@ -18,7 +18,7 @@ # along with Koha; if not, see . use Modern::Perl; -use Test::More tests => 77; +use Test::More tests => 78; use Test::MockModule; use Test::Warn; @@ -134,9 +134,9 @@ is( $messages->[0]->{status}, 'pending', 'EnqueueLetter stores the status pendin # SendQueuedMessages my $messages_processed = C4::Letters::SendQueuedMessages( { type => 'email' }); -is($messages_processed, 0, 'No queued messaged process if type limit passed with unused type'); +is($messages_processed, 0, 'No queued messages processed if type limit passed with unused type'); $messages_processed = C4::Letters::SendQueuedMessages( { type => 'sms' }); -is($messages_processed, 1, 'all queued messages processed, found correct number of messages with type limit'); +is($messages_processed, 1, 'All queued messages processed, found correct number of messages with type limit'); $messages = C4::Letters::GetQueuedMessages({ borrowernumber => $borrowernumber }); is( $messages->[0]->{status}, -- 2.39.5