Bug 14957: Exclude leader from saved/updated record comparison in tests
authorDavid Gustafsson <glasklas@gmail.com>
Fri, 1 Oct 2021 14:47:44 +0000 (16:47 +0200)
committerJonathan Druart <jonathan.druart@bugs.koha-community.org>
Tue, 26 Oct 2021 14:46:03 +0000 (16:46 +0200)
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
t/db_dependent/Biblio/MarcOverlayRules.t

index 1e4558db3b65aba8e88198fef34408ea4e61b10b..a0c672f2ec6af256c2ed8ea676e32692cfb9867f 100755 (executable)
@@ -720,7 +720,9 @@ subtest 'context option in ModBiblio is handled correctly' => sub {
             [ '500', 'a', 'One bottle of beer in the fridge' ],       # original
             [ '999', 'c', $biblionumber, 'd', $biblioitemnumber ],    # created by AddBiblio
     ]);
-    $expected_record->leader('00196    a2200073   4500');
+
+    # Make sure leader is equal after AddBiblio
+    $expected_record->leader($saved_record->leader());
 
     is(
         $saved_record->as_formatted,
@@ -744,7 +746,9 @@ subtest 'context option in ModBiblio is handled correctly' => sub {
             [ '500', 'a', 'One cold bottle of beer in the fridge' ],
             [ '999', 'c', $biblionumber, 'd', $biblioitemnumber ],    # created by AddBiblio
     ]);
-    $expected_record->leader('00250    a2200085   4500');
+
+    # Make sure leader is equal after ModBiblio
+    $expected_record->leader($updated_record->leader());
 
     is(
         $updated_record->as_formatted,