mirror of
https://github.com/simonw/datasette.git
synced 2025-12-10 16:51:24 +01:00
Fix for TableNotFound, refs #2359
This commit is contained in:
parent
62686114ee
commit
7316dd4ac6
5 changed files with 10 additions and 12 deletions
|
|
@ -36,7 +36,7 @@ async def test_table_json(ds_client):
|
|||
async def test_table_not_exists_json(ds_client):
|
||||
assert (await ds_client.get("/fixtures/blah.json")).json() == {
|
||||
"ok": False,
|
||||
"error": "Table not found: blah",
|
||||
"error": "Table not found",
|
||||
"status": 404,
|
||||
"title": None,
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue