summaryrefslogtreecommitdiff
path: root/tests/frontend/artifact_list_contents.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/frontend/artifact_list_contents.py')
-rw-r--r--tests/frontend/artifact_list_contents.py21
1 files changed, 5 insertions, 16 deletions
diff --git a/tests/frontend/artifact_list_contents.py b/tests/frontend/artifact_list_contents.py
index ddd2d50a6..7e8bb6508 100644
--- a/tests/frontend/artifact_list_contents.py
+++ b/tests/frontend/artifact_list_contents.py
@@ -37,9 +37,7 @@ def test_artifact_list_exact_contents_element(cli, datafiles):
assert result.exit_code == 0
# List the contents via the element name
- result = cli.run(
- project=project, args=["artifact", "list-contents", "import-bin.bst"]
- )
+ result = cli.run(project=project, args=["artifact", "list-contents", "import-bin.bst"])
assert result.exit_code == 0
expected_output = "import-bin.bst:\n" "\tusr\n" "\tusr/bin\n" "\tusr/bin/hello\n\n"
assert expected_output in result.output
@@ -57,14 +55,10 @@ def test_artifact_list_exact_contents_ref(cli, datafiles):
assert result.exit_code == 0
# List the contents via the key
- result = cli.run(
- project=project, args=["artifact", "list-contents", "test/import-bin/" + key]
- )
+ result = cli.run(project=project, args=["artifact", "list-contents", "test/import-bin/" + key])
assert result.exit_code == 0
- expected_output = (
- "test/import-bin/" + key + ":\n" "\tusr\n" "\tusr/bin\n" "\tusr/bin/hello\n\n"
- )
+ expected_output = "test/import-bin/" + key + ":\n" "\tusr\n" "\tusr/bin\n" "\tusr/bin/hello\n\n"
assert expected_output in result.output
@@ -106,9 +100,7 @@ def test_artifact_list_exact_contents_element_long(cli, datafiles):
assert result.exit_code == 0
# List the contents via the element name
- result = cli.run(
- project=project, args=["artifact", "list-contents", "--long", "import-bin.bst"]
- )
+ result = cli.run(project=project, args=["artifact", "list-contents", "--long", "import-bin.bst"])
assert result.exit_code == 0
expected_output = (
"import-bin.bst:\n"
@@ -132,10 +124,7 @@ def test_artifact_list_exact_contents_ref_long(cli, datafiles):
assert result.exit_code == 0
# List the contents via the key
- result = cli.run(
- project=project,
- args=["artifact", "list-contents", "-l", "test/import-bin/" + key],
- )
+ result = cli.run(project=project, args=["artifact", "list-contents", "-l", "test/import-bin/" + key],)
assert result.exit_code == 0
expected_output = (