Skip to content

Commit abe2e1d

Browse files
committed
remove -f
1 parent 4ebf43a commit abe2e1d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_branch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def test_branch_create_delete(xtl_clone, git2cpp_path, tmp_path, run_in_tmp_path
2828
assert(p_list.stdout == ' foregone\n* master\n')
2929

3030
# Problem of right for "delete"? Maybe need a -D instead of -d
31-
del_cmd = [git2cpp_path, 'branch', '-d', '-f', 'foregone']
31+
del_cmd = [git2cpp_path, 'branch', '-d', 'foregone']
3232
p_del = subprocess.run(del_cmd, capture_output=True, cwd=xtl_path, text=True)
3333
assert p_del.returncode == 0
3434

0 commit comments

Comments
 (0)