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 07ae3b98..c955f12a 100644
--- a/morphlib/buildsystem_tests.py
+++ b/morphlib/buildsystem_tests.py
@@ -103,7 +103,7 @@ class DummyBuildSystemTests(unittest.TestCase):
class AutotoolsBuildSystemTests(unittest.TestCase):
def setUp(self):
- self.bs = morphlib.buildsystem.ManualBuildSystem()
+ self.bs = morphlib.buildsystem.AutotoolsBuildSystem()
self.tempdir = tempfile.mkdtemp()
def tearDown(self):
@@ -118,7 +118,7 @@ class AutotoolsBuildSystemTests(unittest.TestCase):
def test_autodetects_autotools(self):
create_autotools_project(self.tempdir)
- self.assertFalse(self.bs.used_by_project(self.exists))
+ self.assertTrue(self.bs.used_by_project(self.exists))
class DetectBuildSystemTests(unittest.TestCase):