View | Details | Raw Unified | Return to bug 32942
Collapse All | Expand All

(-)a/t/db_dependent/Suggestions.t (-1 / +6 lines)
Lines 205-210 my $messages = C4::Letters::GetQueuedMessages({ Link Here
205
});
205
});
206
is( @$messages, 0, 'ModSuggestions does not send an email if the status is not updated' );
206
is( @$messages, 0, 'ModSuggestions does not send an email if the status is not updated' );
207
207
208
my $authorised_value = Koha::AuthorisedValue->new(
209
    {
210
        category         => 'SUGGEST_STATUS',
211
        authorised_value => 'STALLED'
212
    }
213
)->store;
208
my $mod_suggestion2 = {
214
my $mod_suggestion2 = {
209
    STATUS       => 'STALLED',
215
    STATUS       => 'STALLED',
210
    suggestionid => $my_suggestionid,
216
    suggestionid => $my_suggestionid,
211
- 

Return to bug 32942