diff options
author | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2017-11-08 20:40:08 +0900 |
---|---|---|
committer | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2017-11-08 21:27:21 +0900 |
commit | 213d9072b684d2dff78d8b4f1c7cfa9d6335b0d0 (patch) | |
tree | 8dc7a203d486e45430cadaf5a4e33e720d1ef015 /tests/context | |
parent | 34ba445fd1963acada0733c196483c98a57fd753 (diff) | |
download | buildstream-213d9072b684d2dff78d8b4f1c7cfa9d6335b0d0.tar.gz |
Refactor: Move context.py -> _context.py
Consequently:
o Changed Plugin.get_context() to a private Plugin._get_context() accessor.
o Updated anything which imports Context to do so from private _context module
o Updated docs to exclude the now private Context
Diffstat (limited to 'tests/context')
-rw-r--r-- | tests/context/context.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/context/context.py b/tests/context/context.py index be0dd8a55..0db589a1a 100644 --- a/tests/context/context.py +++ b/tests/context/context.py @@ -1,7 +1,7 @@ import os import pytest -from buildstream import Context +from buildstream._context import Context from buildstream._exceptions import LoadError, LoadErrorReason from tests.testutils.site import HAVE_ROOT |