Skip to content

Commit

Permalink
pr_body fix
Browse files Browse the repository at this point in the history
fix
  • Loading branch information
ytausch committed Nov 25, 2024
1 parent 8787e88 commit 6c8958e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/test_migrators.py
Original file line number Diff line number Diff line change
Expand Up @@ -544,7 +544,7 @@ def run_test_migration(
if isinstance(m, Version):
pass
else:
assert prb in m.pr_body(fctx)
assert prb in m.pr_body(None)
try:
if "new_version" in kwargs:
pmy["version_pr_info"] = {"new_version": kwargs["new_version"]}
Expand Down
2 changes: 1 addition & 1 deletion tests/test_migrators_v1.py
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ def run_test_migration(
if isinstance(m, Version):
pass
else:
assert prb in m.pr_body(fctx)
assert prb in m.pr_body(None)
try:
if "new_version" in kwargs:
pmy["version_pr_info"] = {"new_version": kwargs["new_version"]}
Expand Down

0 comments on commit 6c8958e

Please sign in to comment.