summaryrefslogtreecommitdiff
path: root/morphlib
diff options
context:
space:
mode:
authorRichard Maw <richard.maw@codethink.co.uk>2012-04-25 12:13:33 +0000
committerRichard Maw <richard.maw@codethink.co.uk>2012-04-25 12:13:33 +0000
commit61c374740609c3cec65fecc57ad993e49f3b6b2c (patch)
treea469836a54a076506dbcf303b829503f2a8d1f86 /morphlib
parent8dc6f6b82f3b3bf2154acae31ccc6b071bf7d846 (diff)
downloadmorph-61c374740609c3cec65fecc57ad993e49f3b6b2c.tar.gz
builder2 tests: add extra required parameter
Diffstat (limited to 'morphlib')
-rw-r--r--morphlib/builder2_tests.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/morphlib/builder2_tests.py b/morphlib/builder2_tests.py
index 67379341..8c08c551 100644
--- a/morphlib/builder2_tests.py
+++ b/morphlib/builder2_tests.py
@@ -142,7 +142,8 @@ class BuilderBaseTests(unittest.TestCase):
self.artifact,
self.repo_cache,
self.build_env,
- self.max_jobs)
+ self.max_jobs,
+ False)
def test_returns_an_artifact(self):
artifact = self.builder.new_artifact('le-artifact')
@@ -205,7 +206,7 @@ class ChunkBuilderTests(unittest.TestCase):
def setUp(self):
self.build = morphlib.builder2.ChunkBuilder(None, None, None, None,
- None, 1)
+ None, 1, False)
def test_uses_morphology_commands_when_given(self):
m = { 'build-commands': ['build-it'] }