diff options
Diffstat (limited to 'tests/internals/context.py')
-rw-r--r-- | tests/internals/context.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/internals/context.py b/tests/internals/context.py index c219d5f5d..c2ee1efb5 100644 --- a/tests/internals/context.py +++ b/tests/internals/context.py @@ -53,9 +53,7 @@ def test_context_load_envvar(context_fixture): assert isinstance(context, Context) context.load(config=os.devnull) - assert context.sourcedir == os.path.join( - "/", "some", "path", "buildstream", "sources" - ) + assert context.sourcedir == os.path.join("/", "some", "path", "buildstream", "sources") assert context.builddir == os.path.join("/", "some", "path", "buildstream", "build") assert context.cachedir == os.path.join("/", "some", "path", "buildstream") assert context.logdir == os.path.join("/", "some", "path", "buildstream", "logs") |