Skip to content

Commit

Permalink
fix: replace deprecated github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
huniafatima-arbi committed Jul 2, 2024
1 parent 38e82a9 commit 3fca33b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_pull_request_creator.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ def test_outputs_url_on_success(self, print_mock, create_branch_mock, create_pr_
assert print_mock.call_count == 1
found_matching_call = False
for call in print_mock.call_args_list:
if 'set-output' in call.args[0]:
if '$GITHUB_OUTPUT' in call.args[0]:
found_matching_call = True
assert found_matching_call

Expand Down

0 comments on commit 3fca33b

Please sign in to comment.