Skip to content

Commit

Permalink
Fix broken test
Browse files Browse the repository at this point in the history
  • Loading branch information
maresb committed Sep 29, 2024
1 parent 0357769 commit c57f720
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_pypi.py
Original file line number Diff line number Diff line change
Expand Up @@ -1031,8 +1031,8 @@ def test_mypy_deps_normalization_and_entry_points():
assert "mypy-extensions >=0.4.3,<0.5.0" not in recipe["requirements"]["run"]
assert "typed-ast >=1.4.0,<1.5.0" in recipe["requirements"]["run"]
assert "typed_ast <1.5.0,>=1.4.0" not in recipe["requirements"]["run"]
assert "typing-extensions >=3.7.4" in recipe["requirements"]["run"]
assert "typing_extensions >=3.7.4" not in recipe["requirements"]["run"]
assert "typing-extensions >=3.7.4" not in recipe["requirements"]["run"]
assert "typing_extensions >=3.7.4" in recipe["requirements"]["run"]

assert recipe["build"]["entry_points"] == [
"mypy=mypy.__main__:console_entry",
Expand Down

0 comments on commit c57f720

Please sign in to comment.