Bug 22571: (follow up) fix Donald cut-&-paste error
authorMark Tompsett <mtompset@hotmail.com>
Mon, 17 Jun 2019 17:57:46 +0000 (17:57 +0000)
committerMartin Renvoize <martin.renvoize@ptfs-europe.com>
Fri, 21 Jun 2019 12:13:03 +0000 (13:13 +0100)
Signed-off-by: Mark Tompsett <mtompset@hotmail.com>
Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>

t/SimpleMARC.t

index 4812e31..d32ac88 100644 (file)
@@ -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"' );
     };
 };