Rename _schemas to _internal, closes #1156

This commit is contained in:
Simon Willison 2020-12-21 11:48:06 -08:00
commit dcdfb2c301
9 changed files with 250 additions and 259 deletions

View file

@ -293,7 +293,7 @@ def test_hook_extra_body_script(app_client, path, expected_extra_body_script):
def test_hook_asgi_wrapper(app_client):
response = app_client.get("/fixtures")
assert "_schemas, fixtures" == response.headers["x-databases"]
assert "_internal, fixtures" == response.headers["x-databases"]
def test_hook_extra_template_vars(restore_working_directory):