Skip to content

Commit

Permalink
fix: wrong call
Browse files Browse the repository at this point in the history
  • Loading branch information
beckermr committed Sep 21, 2024
1 parent 0ad4b14 commit f89a061
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions conda_forge_webservices/tests/test_webapp.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def test_good_header(

if linting.LINT_VIA_GHA:
lint_via_gha.assert_called_once_with(
"conda-forge", "repo_name-feedstock", PR_number
"conda-forge/repo_name-feedstock", PR_number
)
else:
compute_lint_message.assert_called_once_with(
Expand Down Expand Up @@ -393,7 +393,7 @@ def test_staged_recipes(
self.assertEqual(response.code, 200)
if linting.LINT_VIA_GHA:
lint_via_gha.assert_called_once_with(
"conda-forge", "staged-recipes", PR_number
"conda-forge/staged-recipes", PR_number
)
else:
compute_lint_message.assert_called_once_with(
Expand Down

0 comments on commit f89a061

Please sign in to comment.