Bug 19955: Minor grammatical correction
Signed-off-by: Tomas Cohen Arazi <tomascohen@gmail.com> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
This commit is contained in:
parent
830b5a7d7d
commit
d239baf0fb
1 changed files with 2 additions and 2 deletions
|
@ -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},
|
||||
|
|
Loading…
Reference in a new issue