Fix extensions py test

This commit is contained in:
PThorpe92
2025-11-09 11:33:00 -05:00
parent b443b09516
commit 5c207618a7
2 changed files with 1 additions and 2 deletions

View File

@@ -493,7 +493,7 @@ def _test_kv(exec_name, ext_path):
turso.run_test_fn("alter table t rename to renamed;", lambda res: "" == res, "can rename virtual table")
turso.run_test_fn(
"select sql from sqlite_schema where name = 'renamed';",
lambda res: "CREATE VIRTUAL TABLE t2 USING kv_store ()",
lambda res: "CREATE VIRTUAL TABLE renamed USING kv_store ()",
"renamed table shows up in sqlite_schema",
)
turso.quit()