diff options
author | Adam Stokes <adam.stokes@ubuntu.com> | 2013-07-26 09:16:44 -0700 |
---|---|---|
committer | Adam Stokes <adam.stokes@ubuntu.com> | 2013-07-26 09:16:44 -0700 |
commit | 9c97f8f731aaedd46ecd9c3194c4410b73a3b983 (patch) | |
tree | 465fafd9c76e8a6dcae9be4fb0b7801303a33521 /tests/utilities_tests.py | |
parent | f499e561043af2f801deb48fdc91d51a29ba22e8 (diff) | |
parent | de0b58ac472837b2e75729e00827117072a83893 (diff) | |
download | sos-9c97f8f731aaedd46ecd9c3194c4410b73a3b983.tar.gz |
Merge pull request #177 from battlemidget/feature-distutils-3
Add support for distutils
Diffstat (limited to 'tests/utilities_tests.py')
-rw-r--r-- | tests/utilities_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/utilities_tests.py b/tests/utilities_tests.py index 5520bb16..fc9e858f 100644 --- a/tests/utilities_tests.py +++ b/tests/utilities_tests.py @@ -46,7 +46,7 @@ class DirTreeTest(unittest.TestCase): # I'll admit, this a pretty lame test, but it will at least sniff out # some syntax issues t = DirTree(os.path.dirname(sos.__file__)).as_string() - self.assertTrue('Makefile' in t) + self.assertTrue('sos' in t) class ChecksumTest(unittest.TestCase): |