Fix cli tests

This commit is contained in:
PThorpe92
2025-04-03 14:04:28 -04:00
parent c15035caf8
commit a0f71e27be

View File

@@ -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)