summaryrefslogtreecommitdiff
path: root/tests/sources/git.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/sources/git.py')
-rw-r--r--tests/sources/git.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/sources/git.py b/tests/sources/git.py
index f3d2e2809..98891a9af 100644
--- a/tests/sources/git.py
+++ b/tests/sources/git.py
@@ -869,11 +869,11 @@ def test_git_describe(cli, tmpdir, datafiles, ref_storage, tag_type):
options = []
else:
options = ['--tags']
- describe = subprocess.check_output(['git', 'describe'] + options,
+ describe = subprocess.check_output(['git', 'describe', *options],
cwd=checkout).decode('ascii')
assert describe.startswith('tag2-2-')
- describe_fp = subprocess.check_output(['git', 'describe', '--first-parent'] + options,
+ describe_fp = subprocess.check_output(['git', 'describe', '--first-parent', *options],
cwd=checkout).decode('ascii')
assert describe_fp.startswith('tag1-2-')
@@ -979,7 +979,7 @@ def test_git_describe_head_is_tagged(cli, tmpdir, datafiles, ref_storage, tag_ty
options = []
else:
options = ['--tags']
- describe = subprocess.check_output(['git', 'describe'] + options,
+ describe = subprocess.check_output(['git', 'describe', *options],
cwd=checkout).decode('ascii')
assert describe.startswith('tag')