From d08e776cf1e25ffa407bb3a5d668c1b140be6ec2 Mon Sep 17 00:00:00 2001 From: Mark Tompsett Date: Mon, 17 Jun 2019 17:57:46 +0000 Subject: [PATCH] Bug 22571: (follow up) fix Donald cut-&-paste error Signed-off-by: Mark Tompsett Signed-off-by: Nick Clemens Signed-off-by: Martin Renvoize --- t/SimpleMARC.t | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/t/SimpleMARC.t b/t/SimpleMARC.t index 4812e31..d32ac88 100644 --- a/t/SimpleMARC.t +++ b/t/SimpleMARC.t @@ -1728,7 +1728,7 @@ subtest 'field_equals' => sub { field => '008', subfield => '', }); - is_deeply( $match, [], '008 control field not equal to "Donald"' ); + is_deeply( $match, [], '008 control field not equal to "eng"' ); $match = Koha::SimpleMARC::field_equals({ record => $record, @@ -1737,6 +1737,6 @@ subtest 'field_equals' => sub { subfield => '', is_regex => 1, }); - is_deeply( $match, [1], 'first 008 control field matches "Donald"' ); + is_deeply( $match, [1], 'first 008 control field matches "eng"' ); }; }; -- 1.7.2.5