summaryrefslogtreecommitdiff
path: root/tests/functional-tests
diff options
context:
space:
mode:
authorMartyn Russell <martyn@lanedo.com>2014-10-20 15:48:05 +0100
committerMartyn Russell <martyn@lanedo.com>2014-10-20 15:48:05 +0100
commit668537e654af4442b760deb02cbb54e7dc50b2e9 (patch)
tree3453e8fa57595e15bc57e34f27eeb2d822b96bb9 /tests/functional-tests
parent7c94200bcc012c016ccfd92b5093b4f18c8c2d91 (diff)
parentf22c5d6a5dcbd6a849e60fe29374d9b004af40c8 (diff)
downloadtracker-668537e654af4442b760deb02cbb54e7dc50b2e9.tar.gz
Merge branch 'data-in-binary-dirs'
Diffstat (limited to 'tests/functional-tests')
-rwxr-xr-xtests/functional-tests/310-fts-indexing.py2
-rw-r--r--tests/functional-tests/fts-tc.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/functional-tests/310-fts-indexing.py b/tests/functional-tests/310-fts-indexing.py
index 33e2adf1b..78010f7df 100755
--- a/tests/functional-tests/310-fts-indexing.py
+++ b/tests/functional-tests/310-fts-indexing.py
@@ -285,7 +285,7 @@ class MinerFTSStopwordsTest (CommonMinerFTS):
if "_" in langcode:
langcode = langcode.split ("_")[0]
- stopwordsfile = os.path.join (cfg.DATADIR, "tracker", "languages", "stopwords." + langcode)
+ stopwordsfile = os.path.join (cfg.DATADIR, "tracker", "stop-words", "stopwords." + langcode)
if not os.path.exists (stopwordsfile):
self.skipTest ("No stopwords for the current locale ('%s' doesn't exist)" % (stopwordsfile))
diff --git a/tests/functional-tests/fts-tc.py b/tests/functional-tests/fts-tc.py
index 1c5686dd3..620802b24 100644
--- a/tests/functional-tests/fts-tc.py
+++ b/tests/functional-tests/fts-tc.py
@@ -469,7 +469,7 @@ class stopwords (TestUpdate):
file_path = configuration.MYDOCS + TEST_TEXT
"""copy the test files """
- test_file='/usr/share/tracker/languages/stopwords.en'
+ test_file='/usr/share/tracker/stop-words/stopwords.en'
f1=open(test_file,'r')
lines = f1.readlines()
f1.close()