Rename filtered_table_rows_count to count, refs #782

This commit is contained in:
Simon Willison 2022-12-31 12:52:57 -08:00
commit 5bbe2bcc50
5 changed files with 14 additions and 13 deletions

View file

@ -981,7 +981,7 @@ def test_common_prefix_database_names(app_client_conflicting_database_names):
def test_inspect_file_used_for_count(app_client_immutable_and_inspect_file):
response = app_client_immutable_and_inspect_file.get("/fixtures/sortable.json")
assert response.json["filtered_table_rows_count"] == 100
assert response.json["count"] == 100
@pytest.mark.asyncio