@@ -, +, @@ --- t/Matcher.t | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) --- a/t/Matcher.t +++ a/t/Matcher.t @@ -4,7 +4,7 @@ use strict; use warnings; -use Test::More tests => 10; +use Test::More tests => 11; use Test::MockModule; BEGIN { @@ -62,3 +62,5 @@ is( $testmatcher->code(), 'match on ISBN', 'testing code accessor' ); $testmatcher->description('match on ISSN'); is( $testmatcher->description(), 'match on ISSN', 'testing code accessor' ); + +is( C4::Matcher::_normalize('(OCoLC)20329436'), '(OCoLC)20329436', 'C4::Matcher::_normalize does not mangle standard OCLC fields' ); --