Commit dfaf4911 authored by Thomas Larrieu's avatar Thomas Larrieu

fixed test_get_installed_files

parent dfb24fa1
......@@ -292,7 +292,7 @@ class NonInformativeTests(unittest.TestCase):
recipe.buildout_prefix = prefix
file_list = recipe.get_installed_files(ref_path)
installed_files.pop(2)
self.assertEquals([os.path.relpath(f, prefix) for f in file_list], installed_files)
self.assertItemsEqual([os.path.relpath(f, prefix) for f in file_list], installed_files)
def test_honor_buidlout_keep_compile_directory(self):
buildout = {'keep-compile-dir' : 'true'}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment