Skip to content

Commit

Permalink
Fixed test I broke in #863
Browse files Browse the repository at this point in the history
  • Loading branch information
simonw committed Jun 24, 2020
1 parent c5916cb commit 1a5b7d3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Changelog
- Respect existing ``scope["actor"]`` if already set by ASGI middleware. (`#854 <https://github.com/simonw/datasette/issues/854>`__)
- New process for shipping :ref:`contributing_alpha_beta`. (`#807 <https://github.com/simonw/datasette/issues/807>`__)
- Re-arranged plugins documentation into :ref:`plugins`, :ref:`writing_plugins`, :ref:`plugin_hooks` and a new section on :ref:`testing_plugins`. (`#687 <https://github.com/simonw/datasette/issues/687>`__)
- ``{{ csrftoken() }}`` now works when plugins render a template using ``datasette.render_template()``. (`#863 <https://github.com/simonw/datasette/issues/863>`__)
- ``{{ csrftoken() }}`` now works when plugins render a template using ``datasette.render_template(..., request=request)``. (`#863 <https://github.com/simonw/datasette/issues/863>`__)

.. _v0_44:

Expand Down
5 changes: 2 additions & 3 deletions tests/test_plugins.py
Original file line number Diff line number Diff line change
Expand Up @@ -580,9 +580,8 @@ def test_register_routes_post(app_client):
assert "post data" == response.json["this is"]


def test_register_routes_csrftoken(tmpdir):
templates = tmpdir / "templates"
templates.mkdir()
def test_register_routes_csrftoken(restore_working_directory, tmpdir_factory):
templates = tmpdir_factory.mktemp("templates")
(templates / "csrftoken_form.html").write_text(
"CSRFTOKEN: {{ csrftoken() }}", "utf-8"
)
Expand Down

0 comments on commit 1a5b7d3

Please sign in to comment.