aboutsummaryrefslogtreecommitdiffstats
path: root/tests/utilities_tests.py
diff options
context:
space:
mode:
authorAdam Stokes <adam.stokes@ubuntu.com>2013-07-26 10:48:56 -0400
committerAdam Stokes <adam.stokes@ubuntu.com>2013-07-26 10:48:56 -0400
commitde0b58ac472837b2e75729e00827117072a83893 (patch)
tree465fafd9c76e8a6dcae9be4fb0b7801303a33521 /tests/utilities_tests.py
parentf499e561043af2f801deb48fdc91d51a29ba22e8 (diff)
downloadsos-de0b58ac472837b2e75729e00827117072a83893.tar.gz
Add support for distutils
- We are planning on moving to python distutils for future packaging however, we still want to keep our current build infrastructure around until we are able to test the builds overtime. For now distutils will live alongside the current build process and slowly replace the Makefiles once deemed fit. Signed-off-by: Adam Stokes <adam.stokes@ubuntu.com>
Diffstat (limited to 'tests/utilities_tests.py')
-rw-r--r--tests/utilities_tests.py2
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):