Skip to content

Commit

Permalink
test failure
Browse files Browse the repository at this point in the history
  • Loading branch information
hauntsaninja committed Aug 4, 2023
1 parent 53f9ce7 commit a0c804f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/unit/test_index.py
Original file line number Diff line number Diff line change
Expand Up @@ -385,14 +385,14 @@ def test_create(self, allow_all_prereleases: bool, prefer_binary: bool) -> None:
assert evaluator._allow_all_prereleases == allow_all_prereleases
assert evaluator._prefer_binary == prefer_binary
assert evaluator._specifier is specifier
assert evaluator._supported_tags == [Tag("py36", "none", "any")]
assert evaluator._supported_tags == {Tag("py36", "none", "any")}

def test_create__target_python_none(self) -> None:
"""
Test passing target_python=None.
"""
evaluator = CandidateEvaluator.create("my-project")
expected_tags = get_supported()
expected_tags = set(get_supported())
assert evaluator._supported_tags == expected_tags

def test_create__specifier_none(self) -> None:
Expand Down Expand Up @@ -815,7 +815,7 @@ def test_make_candidate_evaluator(
assert evaluator._prefer_binary == prefer_binary
assert evaluator._project_name == "my-project"
assert evaluator._specifier is specifier
assert evaluator._supported_tags == [Tag("py36", "none", "any")]
assert evaluator._supported_tags == {Tag("py36", "none", "any")}


@pytest.mark.parametrize(
Expand Down

0 comments on commit a0c804f

Please sign in to comment.