Skip to content

Commit

Permalink
fix: wrong message in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
beckermr committed Oct 14, 2024
1 parent faafdb2 commit 2f0603c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_lint_recipe.py
Original file line number Diff line number Diff line change
Expand Up @@ -1882,15 +1882,15 @@ def test_maintainer_team_exists(self):
},
conda_forge=True,
)
expected_message = 'Recipe maintainer "conda-forge/blahblahblah-foobarblah" does not exist'
expected_message = 'Recipe maintainer team "conda-forge/blahblahblah-foobarblah" does not exist'
self.assertIn(expected_message, lints)

lints, _ = linter.lintify_meta_yaml(
{"extra": {"recipe-maintainers": ["conda-forge/core"]}},
conda_forge=True,
)
expected_message = (
'Recipe maintainer "conda-forge/core" does not exist'
'Recipe maintainer team "conda-forge/core" does not exist'
)
self.assertNotIn(expected_message, lints)

Expand Down

0 comments on commit 2f0603c

Please sign in to comment.