1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
Author: Andreas Tille <tille@debian.org>
Last-Update: Fri, 16 Jun 2017 13:30:22 +0200
Description: ls will be moved from /bin/ls to /usr/bin/ls - lets skip
this test which does not make real sense anyway.
--- a/tests/test_util/test_misc.py
+++ b/tests/test_util/test_misc.py
@@ -1626,7 +1626,7 @@ class reverse_complementTests(TestCase):
def test_app_path(self):
"""app_path should return correct paths"""
- self.assertEqual(app_path('ls'), '/bin/ls')
+ # self.assertEqual(app_path('ls'), '/usr/bin/ls')
self.assertEqual(app_path('lsxxyyx'), False)
class CommandLineParserTests(TestCase):
|