We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3519ae7 commit 6148bf1Copy full SHA for 6148bf1
tests/test_git.py
@@ -301,15 +301,20 @@ def test_create_tag_with_message(tmp_commitizen_project):
301
(
302
"/tmp/temp file",
303
'git commit --signoff -F "/tmp/temp file"',
304
- ), # File contains spaces
+ ),
305
306
"/tmp dir/temp file",
307
'git commit --signoff -F "/tmp dir/temp file"',
308
- ), # Path contains spaces
309
310
"/tmp/tempfile",
311
'git commit --signoff -F "/tmp/tempfile"',
312
- ), # Path does not contain spaces
313
+ ],
314
+ ids=[
315
+ "File contains spaces",
316
+ "Path contains spaces",
317
+ "Path does not contain spaces",
318
],
319
)
320
def test_commit_with_spaces_in_path(mocker, file_path, expected_cmd):
0 commit comments