Remove legacy event_loop fixture usage

This commit is contained in:
Simon Willison 2025-10-01 12:51:23 -07:00
commit 5d09ab3ff1
3 changed files with 3 additions and 3 deletions

View file

@ -5,7 +5,7 @@ from pathlib import Path
code_root = Path(__file__).parent.parent
def test_black(event_loop):
def test_black():
runner = CliRunner()
result = runner.invoke(black.main, [str(code_root), "--check"])
assert result.exit_code == 0, result.output