summaryrefslogtreecommitdiffstats
path: root/testsuite
diff options
context:
space:
mode:
authorAlexander Sulfrian <alexander@sulfrian.net>2014-11-25 17:56:16 +0100
committerAlexander Sulfrian <alexander@sulfrian.net>2014-11-25 17:57:04 +0100
commitd4ae5e04739d9a8e0732dd35ee28c14b0ff96957 (patch)
treeef161f9a56426122f547794010ef34ae40b4a2cd /testsuite
parent84b180e2fddcb5563adca33ed6feb3fd991dfde2 (diff)
downloadbcfg2-d4ae5e04739d9a8e0732dd35ee28c14b0ff96957.tar.gz
bcfg2-d4ae5e04739d9a8e0732dd35ee28c14b0ff96957.tar.bz2
bcfg2-d4ae5e04739d9a8e0732dd35ee28c14b0ff96957.zip
Bundler: modification is now the boolean inherit_modification
Diffstat (limited to 'testsuite')
-rw-r--r--testsuite/Testsrc/Testlib/TestServer/TestPlugins/TestBundler.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/Testsrc/Testlib/TestServer/TestPlugins/TestBundler.py b/testsuite/Testsrc/Testlib/TestServer/TestPlugins/TestBundler.py
index db2a91227..1bf208c3e 100644
--- a/testsuite/Testsrc/Testlib/TestServer/TestPlugins/TestBundler.py
+++ b/testsuite/Testsrc/Testlib/TestServer/TestPlugins/TestBundler.py
@@ -77,7 +77,7 @@ class TestBundler(TestPlugin, TestStructure, TestXMLDirectoryBacked):
has_dep = lxml.etree.Element("Bundle")
lxml.etree.SubElement(has_dep, "RequiredBundle", name="is_dep")
lxml.etree.SubElement(has_dep, "RequiredBundle", name="is_mod_dep",
- modification="inherit")
+ inherit_modification="true")
lxml.etree.SubElement(has_dep, "Package", name="foo")
b.bundles['has_dep'].XMLMatch.return_value = has_dep
expected['has_dep'] = lxml.etree.Element("Bundle", name="has_dep")
@@ -124,7 +124,7 @@ class TestBundler(TestPlugin, TestStructure, TestXMLDirectoryBacked):
has_dep = lxml.etree.Element("Bundle")
lxml.etree.SubElement(has_dep, "RequiredBundle", name="is_dep")
lxml.etree.SubElement(has_dep, "RequiredBundle", name="is_mod_dep",
- modification="inherit")
+ inherit_modification="true")
lxml.etree.SubElement(has_dep, "Package", name="foo")
b.bundles['has_dep'].XMLMatch.return_value = has_dep
expected['has_dep'] = lxml.etree.Element("Bundle", name="has_dep")