diff --git a/docs/changelog.rst b/docs/changelog.rst
index a60b4b5c..f502f061 100644
--- a/docs/changelog.rst
+++ b/docs/changelog.rst
@@ -1436,7 +1436,7 @@ Other changes
- The request object now provides a ``request.full_path`` property, which returns the path including any query string. (:issue:`1184`)
- Better error message for disallowed ``PRAGMA`` clauses in SQL queries. (:issue:`1185`)
- ``datasette publish heroku`` now deploys using ``python-3.8.7``.
-- New plugin testing documentation on :ref:`testing_plugins_pytest_httpx`. (:issue:`1198`)
+- New plugin testing documentation for mocking outbound HTTP calls. (:issue:`1198`)
- All ``?_*`` query string parameters passed to the table page are now persisted in hidden form fields, so parameters such as ``?_size=10`` will be correctly passed to the next page when query filters are changed. (:issue:`1194`)
- Fixed a bug loading a database file called ``test-database (1).sqlite``. (:issue:`1181`)
diff --git a/docs/testing_plugins.rst b/docs/testing_plugins.rst
index 9ef73724..c03504d3 100644
--- a/docs/testing_plugins.rst
+++ b/docs/testing_plugins.rst
@@ -271,66 +271,6 @@ If you want to create that test database repeatedly for every individual test fu
# This fixture will be executed repeatedly for every test
...
-.. _testing_plugins_pytest_httpx:
-
-Testing outbound HTTP calls with pytest-httpx
----------------------------------------------
-
-If your plugin makes outbound HTTP calls - for example datasette-auth-github or datasette-import-table - you may need to mock those HTTP requests in your tests.
-
-The `pytest-httpx