Bug 5979: follow to fix spelling
authorBernardo Gonzalez Kriegel <bgkriegel@gmail.com>
Fri, 30 Oct 2015 14:38:24 +0000 (11:38 -0300)
committerBrendan Gallagher <bredan@bywatersolutions.com>
Fri, 22 Apr 2016 03:14:23 +0000 (03:14 +0000)
Changed Montains -> Mountains

koha-qa complains!!

Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel@gmail.com>
Signed-off-by: Owen Leonard <oleonard@myacpl.org>
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Signed-off-by: Brendan Gallagher <bredan@bywatersolutions.com>
t/Biblio/Isbd.t

index 7aeb31b..8b6239e 100644 (file)
@@ -38,13 +38,13 @@ t::lib::Mocks::mock_preference('opacisbd', $opac_template);
 
 my $record = MARC::Record->new();
 $record->append_fields(
-    MARC::Field->new('200', '', '', 'a' => 'Montains'),
+    MARC::Field->new('200', '', '', 'a' => 'Mountains'),
     MARC::Field->new('200', '', '', 'f' => 'Keith Lye'),
 );
 my ($bibnum, $title, $bibitemnum) = AddBiblio($record, '');
 
 my $isbd = GetISBDView($bibnum);
-is($isbd, '<h2>Title : Montains by Keith Lye</h2>', 'ISBD is correct');
+is($isbd, '<h2>Title : Mountains by Keith Lye</h2>', 'ISBD is correct');
 
 my $opacisbd = GetISBDView($bibnum, 'opac');
-is($opacisbd, '<h2>Title : Montains (Keith Lye)</h2>', 'OPAC ISBD is correct');
+is($opacisbd, '<h2>Title : Mountains (Keith Lye)</h2>', 'OPAC ISBD is correct');