Skip to content

Commit

Permalink
further merge fix
Browse files Browse the repository at this point in the history
  • Loading branch information
stefan6419846 committed Mar 29, 2024
1 parent 0bcd1e3 commit 8efe8db
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions tests/scripts/test_make_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,16 +136,19 @@ def test_get_formatted_changes__other():
with mock.patch.object(make_release, "get_git_commits_since_tag", return_value=changes):
output, output_with_user = make_release.get_formatted_changes("dummy")

assert output == """
assert (
output == """
### New Features (ENH)
- Add reattach_fields function (#2480)
### Other
- : Improve lossless compression example (#2488)
- FIX: Broken test due to expired test file URL (#2468)
"""
)

assert output_with_user == """
assert (
output_with_user == """
### New Features (ENH)
- Add reattach_fields function (#2480) by @pubpub-zz
Expand Down

0 comments on commit 8efe8db

Please sign in to comment.