From 4afeeea95bede627ffde05d1745d0aea4bc747a8 Mon Sep 17 00:00:00 2001 From: Adrien Saurat Date: Tue, 19 Mar 2013 15:18:55 +0100 Subject: [PATCH] Bug 9845: fix in 08checkin.t ("alert" field) The alert field was expected to have a "N" value. It is not mandatory for the test to succeed. --- C4/SIP/t/08checkin.t | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/C4/SIP/t/08checkin.t b/C4/SIP/t/08checkin.t index 2e04589..0360cb2 100644 --- a/C4/SIP/t/08checkin.t +++ b/C4/SIP/t/08checkin.t @@ -54,7 +54,7 @@ my $test; # the ILS didn't check the item in, and there's no patron id. $test = clone($checkin_test_template); $test->{id} = 'Checkin: Item not checked out'; -$test->{pat} = qr/^100YNN$datepat/o; +$test->{pat} = qr/^100YN[NY]$datepat/o; $test->{fields} = [grep $_->{field} ne FID_PATRON_ID, @{$test->{fields}}]; push @tests, $test; -- 1.7.5.4