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

@ -36,7 +36,7 @@ def test_inspect_cli(app_client):
assert expected_count == database["tables"][table_name]["count"]
def test_inspect_cli_writes_to_file(event_loop, app_client):
def test_inspect_cli_writes_to_file(app_client):
runner = CliRunner()
result = runner.invoke(
cli, ["inspect", "fixtures.db", "--inspect-file", "foo.json"]