Skip to content

Commit

Permalink
test: Add test case for star specifier
Browse files Browse the repository at this point in the history
  • Loading branch information
stinodego committed Sep 26, 2022
1 parent 7c31b82 commit 4f618f7
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tests/test_black.py
Expand Up @@ -1370,6 +1370,7 @@ def test_infer_target_version(self) -> None:
(">=3.10", TargetVersion.PY310),
(">3.6,<3.10", TargetVersion.PY37),
("==3.8.*", TargetVersion.PY38),
("==3.*", TargetVersion.PY33),
(">=3.8.6", TargetVersion.PY38),
("> 3.7.4, != 3.8.8", TargetVersion.PY37),
(">3.7,!=3.8", TargetVersion.PY39),
Expand Down

0 comments on commit 4f618f7

Please sign in to comment.