File: usr_bin_ls.patch

package info (click to toggle)
python-cogent 1.9-14
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 19,752 kB
  • sloc: python: 137,485; makefile: 149; sh: 64
file content (16 lines) | stat: -rw-r--r-- 633 bytes parent folder | download
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):