mirror of
https://github.com/simonw/datasette.git
synced 2025-12-10 16:51:24 +01:00
Update tests to export 200 for OPTIONS calls, refs #1922
This commit is contained in:
parent
48725bb4ea
commit
4c18730e71
2 changed files with 3 additions and 3 deletions
|
|
@ -15,7 +15,7 @@ async def datasette(app_client):
|
|||
"method,path,expected_status",
|
||||
[
|
||||
("get", "/", 200),
|
||||
("options", "/", 405),
|
||||
("options", "/", 200),
|
||||
("head", "/", 200),
|
||||
("put", "/", 405),
|
||||
("patch", "/", 405),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue