Update tests to export 200 for OPTIONS calls, refs #1922

This commit is contained in:
Simon Willison 2022-11-30 10:29:48 -08:00
commit 4c18730e71
2 changed files with 3 additions and 3 deletions

View file

@ -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),