Skip to content

Commit

Permalink
Bump black to 22.3.0 in integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
thejcannon committed Mar 28, 2022
1 parent c4ffd66 commit e40295b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/integration/cli/commands/test_issue_1665.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

@pytest.mark.skipif(
IS_PYPY or sys.version_info[:3] < (3, 6, 2),
reason="The black 22.1.0 distribution requires Python >= 3.6.2",
reason="The black 22.3.0 distribution requires Python >= 3.6.2",
)
def test_lock_black(tmpdir):
# type: (Any) -> None
Expand All @@ -29,10 +29,10 @@ def test_lock_black(tmpdir):
"pip-2020-resolver",
"--style",
"universal",
"black==22.1.0",
"black==22.3.0",
"-o",
lock,
).assert_success()
result = run_pex_command(args=["--lock", lock, "-c", "black", "--", "--version"])
result.assert_success()
assert " 22.1.0 " in result.output
assert " 22.3.0 " in result.output

0 comments on commit e40295b

Please sign in to comment.