File pycscope-test-sort.patch of Package pycscope
---
test/testgenfiles.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/test/testgenfiles.py
+++ b/test/testgenfiles.py
@@ -35,6 +35,6 @@ class TestGenFiles(unittest.TestCase):
# Actual test
fs = list(pycscope.genFiles(tmpd, ['a.py', 'b', "s"], True))
- self.assertEquals(fs, ['a.py', 's/t/f.py', 's/t/e.py', 's/d.py', 's/c.py'])
+ self.assertEquals(sorted(fs), sorted(['a.py', 's/t/f.py', 's/t/e.py', 's/d.py', 's/c.py']))
finally:
shutil.rmtree(tmpd)