summaryrefslogtreecommitdiff
path: root/src/buildstream/testing
diff options
context:
space:
mode:
authorBenjamin Schubert <ben.c.schubert@gmail.com>2019-07-09 17:31:43 +0100
committerbst-marge-bot <marge-bot@buildstream.build>2019-07-15 14:14:03 +0000
commit20335e6cd37cf40111042f324d2daec249628c64 (patch)
treee44b9b7e835a502e153999836a722bb943458c9a /src/buildstream/testing
parent571550ad91f6ea73bc2ce5b0e433f8909aa3c0a0 (diff)
downloadbuildstream-20335e6cd37cf40111042f324d2daec249628c64.tar.gz
_yaml: Set 'MappingNode' public-private API
- _composite -> __composite (internal) - composite -> _composite (BuildStream private) - composite_under -> _composite_under (BuildStream private) - get -> _get (internal)
Diffstat (limited to 'src/buildstream/testing')
-rw-r--r--src/buildstream/testing/runcli.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buildstream/testing/runcli.py b/src/buildstream/testing/runcli.py
index 7d4039747..95bf83eff 100644
--- a/src/buildstream/testing/runcli.py
+++ b/src/buildstream/testing/runcli.py
@@ -573,7 +573,7 @@ class CliIntegration(Cli):
project_config = _yaml.load(temp_project)
- project_config.composite(base_config)
+ project_config._composite(base_config)
_yaml.roundtrip_dump(base_config, project_filename)