summaryrefslogtreecommitdiff
path: root/tests/integration/compose-symlinks.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/integration/compose-symlinks.py')
-rw-r--r--tests/integration/compose-symlinks.py15
1 files changed, 6 insertions, 9 deletions
diff --git a/tests/integration/compose-symlinks.py b/tests/integration/compose-symlinks.py
index 061d8f8e4..7b807d1d5 100644
--- a/tests/integration/compose-symlinks.py
+++ b/tests/integration/compose-symlinks.py
@@ -10,10 +10,7 @@ from buildstream.testing import cli_integration as cli # pylint: disable=unused
pytestmark = pytest.mark.integration
-DATA_DIR = os.path.join(
- os.path.dirname(os.path.realpath(__file__)),
- "project"
-)
+DATA_DIR = os.path.join(os.path.dirname(os.path.realpath(__file__)), "project")
# Test that staging a file inside a directory symlink fails.
@@ -26,11 +23,11 @@ def test_compose_symlinks(cli, tmpdir, datafiles):
# Symlinks do not survive being placed in a source distribution
# ('setup.py sdist'), so we have to create the one we need here.
- project_files = os.path.join(project, 'files', 'compose-symlinks', 'base')
- symlink_file = os.path.join(project_files, 'sbin')
- os.symlink(os.path.join('usr', 'sbin'), symlink_file, target_is_directory=True)
+ project_files = os.path.join(project, "files", "compose-symlinks", "base")
+ symlink_file = os.path.join(project_files, "sbin")
+ os.symlink(os.path.join("usr", "sbin"), symlink_file, target_is_directory=True)
- result = cli.run(project=project, args=['build', 'compose-symlinks/compose.bst'])
+ result = cli.run(project=project, args=["build", "compose-symlinks/compose.bst"])
assert result.exit_code == -1
- assert 'Destination is a symlink, not a directory: /sbin' in result.stderr
+ assert "Destination is a symlink, not a directory: /sbin" in result.stderr