diff options
author | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2018-04-02 22:45:34 +0900 |
---|---|---|
committer | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2018-04-03 22:49:10 +0900 |
commit | 500f4f330fde8b6001a2f8d8921bd5b8acb79960 (patch) | |
tree | fbde3a81f1732ba219d131438ec8134ea6b2c298 /tests/plugins | |
parent | 70c73b93c0aca0c36c17ad4686b7e71b32a8dc1d (diff) | |
download | buildstream-500f4f330fde8b6001a2f8d8921bd5b8acb79960.tar.gz |
_context.py: Adhere to policy on private symbols
And adjust all surrounding sources for changed symbols.
This is a part of issue #285
Diffstat (limited to 'tests/plugins')
-rw-r--r-- | tests/plugins/pipeline.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/plugins/pipeline.py b/tests/plugins/pipeline.py index 805155731..012b48c28 100644 --- a/tests/plugins/pipeline.py +++ b/tests/plugins/pipeline.py @@ -21,7 +21,7 @@ def create_pipeline(tmpdir, basedir, target): def dummy_handler(message, context): pass - context._set_message_handler(dummy_handler) + context.set_message_handler(dummy_handler) return Pipeline(context, project, [target], []) |