From 0658d29f62ce14108860381fe72057ddec4f17bb Mon Sep 17 00:00:00 2001 From: Forest Gregg Date: Fri, 31 May 2024 00:36:45 -0400 Subject: [PATCH] fix test --- tests/test_datatables.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_datatables.py b/tests/test_datatables.py index 82beaa8..93b22a2 100644 --- a/tests/test_datatables.py +++ b/tests/test_datatables.py @@ -11,7 +11,7 @@ async def test_plugin_is_installed(): response = await client.get("http://localhost/-/plugins.json") assert 200 == response.status_code installed_plugins = {p["name"] for p in response.json()} - assert "datasette-datatables" in installed_plugins + assert "datasette-datatable" in installed_plugins @pytest.mark.asyncio