Bug 19489: Koha::Account::Line->issue method and Unit test
[koha.git] / t / SuggestionEngine_AuthorityFile.t
index b648f31..eab5fb6 100755 (executable)
@@ -67,8 +67,7 @@ is(ref($suggestor), 'Koha::SuggestionEngine', 'Created suggestion engine');
 
 my $result = $suggestor->get_suggestions({search => 'Cookery'});
 
-is_deeply($result, [ { 'search' => 'an=1234', 'relevance' => 1, 'label' => 'Cooking' } ], "Suggested correct alternative to 'Cookery'");
+is_deeply($result, [ { 'search' => 'an:1234', 'relevance' => 1, 'label' => 'Cooking' } ], "Suggested correct alternative to 'Cookery'");
 
 done_testing();
 
-1;