From acdbd8c42bbba478732f7f98c37c84195b4c942a Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Wed, 7 May 2025 17:23:29 -0700 Subject: [PATCH] select ... from pragma_function_list() Refs https://github.com/simonw/sqlite-utils/pull/654#issuecomment-2860898278 --- tests/test_plugins.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_plugins.py b/tests/test_plugins.py index e82ed31..c3962ea 100644 --- a/tests/test_plugins.py +++ b/tests/test_plugins.py @@ -54,7 +54,7 @@ def test_prepare_connection(): return [ row[0] for row in db.execute( - "select distinct name from pragma_function_list order by 1" + "select distinct name from pragma_function_list() order by 1" ).fetchall() ]