summaryrefslogtreecommitdiff
path: root/morphlib/sourceresolver_tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'morphlib/sourceresolver_tests.py')
-rw-r--r--morphlib/sourceresolver_tests.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/morphlib/sourceresolver_tests.py b/morphlib/sourceresolver_tests.py
index 5985579c..58512172 100644
--- a/morphlib/sourceresolver_tests.py
+++ b/morphlib/sourceresolver_tests.py
@@ -32,7 +32,7 @@ class FakeRemoteRepoCache(object):
return '''{
"name": "%s",
"kind": "chunk",
- "build-system": "dummy"
+ "build-system": "manual"
}''' % filename[:-len('.morph')]
return 'text'
@@ -46,12 +46,12 @@ class FakeLocalRepo(object):
'chunk.morph': '''
name: chunk
kind: chunk
- build-system: dummy
+ build-system: manual
''',
'chunk-split.morph': '''
name: chunk-split
kind: chunk
- build-system: dummy
+ build-system: manual
products:
- artifact: chunk-split-runtime
include: []
@@ -119,7 +119,7 @@ class FakeLocalRepo(object):
return '''
name: %s
kind: chunk
- build-system: dummy''' % filename[:-len('.morph')]
+ build-system: manual''' % filename[:-len('.morph')]
return 'text'
def list_files(self, ref, recurse):