Adjust test to reflect new parse error

This commit is contained in:
PThorpe92 2025-03-24 21:05:50 -04:00
parent 4384659e5f
commit 334f0a928a
No known key found for this signature in database
GPG key ID: 66DB3FBACBDD05CC
2 changed files with 2 additions and 2 deletions

View file

@ -341,7 +341,7 @@ 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: "Parse error: no such module: kv_store" in res,
)
limbo.execute_dot(f".load {ext_path}")
limbo.run_test_fn(