-
-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make the message made by
cherry_picker --continue
same as regular (#40
) Co-authored-by: Łukasz Langa <[email protected]>
- Loading branch information
Showing
2 changed files
with
16 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -888,11 +888,14 @@ def test_backport_pause_and_continue( | |
), mock.patch( | ||
"cherry_picker.cherry_picker.get_current_branch", | ||
return_value="backport-xxx-3.8", | ||
), mock.patch( | ||
"cherry_picker.cherry_picker.get_author_info_from_short_sha", | ||
return_value="Author Name <[email protected]>", | ||
), mock.patch.object( | ||
cherry_picker, "get_commit_message", return_value="commit message" | ||
cherry_picker, | ||
"get_updated_commit_message", | ||
return_value="""[3.8] commit message | ||
(cherry picked from commit xxxxxxyyyyyy) | ||
Co-authored-by: Author Name <[email protected]>""", | ||
), mock.patch.object( | ||
cherry_picker, "checkout_branch" | ||
), mock.patch.object( | ||
|