[entropy.tests] move tbz2 packages to packages/

This commit is contained in:
Fabio Erculiani
2009-06-27 09:57:57 +02:00
parent 56545b5588
commit d7c79ca008
9 changed files with 2 additions and 2 deletions

View File

@@ -3,8 +3,8 @@ import os
from entropy.exceptions import FileNotFound
def get_test_generic_package(test_pkg):
path1 = os.path.join(os.getcwd(), test_pkg)
path2 = os.path.join(os.getcwd(), "..", test_pkg)
path1 = os.path.join(os.getcwd(), "packages", test_pkg)
path2 = os.path.join(os.getcwd(), "..", "packages", test_pkg)
if os.path.isfile(path1):
return path1
elif os.path.isfile(path2):