We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ebf43a commit abe2e1dCopy full SHA for abe2e1d
test/test_branch.py
@@ -28,7 +28,7 @@ def test_branch_create_delete(xtl_clone, git2cpp_path, tmp_path, run_in_tmp_path
28
assert(p_list.stdout == ' foregone\n* master\n')
29
30
# Problem of right for "delete"? Maybe need a -D instead of -d
31
- del_cmd = [git2cpp_path, 'branch', '-d', '-f', 'foregone']
+ del_cmd = [git2cpp_path, 'branch', '-d', 'foregone']
32
p_del = subprocess.run(del_cmd, capture_output=True, cwd=xtl_path, text=True)
33
assert p_del.returncode == 0
34
0 commit comments