From c087b8469834a63e3b711ae45c49307812ca95f9 Mon Sep 17 00:00:00 2001 From: Liz Rea Date: Thu, 15 Dec 2011 10:21:36 -0600 Subject: [PATCH] Bug 7333 - Fixing up db_dependent/Search.t to use sample data Thanks to Chris N. for helping figure out that it was because there were no French stopwords in the DB that the test was failing. Content-Type: text/plain; charset="utf-8" Patch changes the French string (with French stopwords) to an English string with English stopwords, as only English stopwords are installed in the default data. This patch will allow Search.t to run on the database attached to this bug. --- t/db_dependent/Search.t | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/t/db_dependent/Search.t b/t/db_dependent/Search.t index 31316f2..17fac6e 100644 --- a/t/db_dependent/Search.t +++ b/t/db_dependent/Search.t @@ -23,7 +23,7 @@ foreach my $string ("Leçon","modèles") { ok($results[0] eq $string,"$string is not modified"); } -foreach my $string ("Les chaussettes de l'archiduchesse") { +foreach my $string ("A book about the stars") { my @results=C4::Search::_remove_stopwords($string,"kw"); $debug && warn "$string ",Dump(@results); ok($results[0] ne $string,"$results[0] from $string"); -- 1.7.2.5