From a0f71e27beece3aea2fdf24087ab14253006d29d Mon Sep 17 00:00:00 2001 From: PThorpe92 Date: Thu, 3 Apr 2025 14:04:28 -0400 Subject: [PATCH] Fix cli tests --- testing/cli_tests/extensions.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testing/cli_tests/extensions.py b/testing/cli_tests/extensions.py index bab8cb74f..ac870ee4d 100755 --- a/testing/cli_tests/extensions.py +++ b/testing/cli_tests/extensions.py @@ -345,10 +345,10 @@ def test_kv(): limbo = TestLimboShell() limbo.run_test_fn( "create virtual table t using kv_store;", - lambda res: "Virtual table module not found: kv_store" in res, + lambda res: "Module kv_store not found" in res, ) limbo.execute_dot(f".load {ext_path}") - limbo.debug_print( + limbo.execute_dot( "create virtual table t using kv_store;", ) limbo.run_test_fn(".schema", lambda res: "CREATE VIRTUAL TABLE t" in res)