summaryrefslogtreecommitdiff
path: root/morphlib/buildsystem_tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'morphlib/buildsystem_tests.py')
-rw-r--r--morphlib/buildsystem_tests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/morphlib/buildsystem_tests.py b/morphlib/buildsystem_tests.py
index 6d426d8c..2d688922 100644
--- a/morphlib/buildsystem_tests.py
+++ b/morphlib/buildsystem_tests.py
@@ -121,10 +121,10 @@ class DetectBuildSystemTests(unittest.TestCase):
def tearDown(self):
shutil.rmtree(self.tempdir)
- def test_autodetects_manual(self):
+ def test_does_not_autodetect_manual(self):
create_manual_project(self.tempdir)
bs = morphlib.buildsystem.detect_build_system(self.tempdir)
- self.assertEqual(type(bs), morphlib.buildsystem.ManualBuildSystem)
+ self.assertEqual(bs, None)
def test_autodetects_autotools(self):
create_autotools_project(self.tempdir)