Update test to reflect lack of err message when .schema nonexistant table is ran

This commit is contained in:
PThorpe92
2025-09-25 19:44:42 -04:00
parent 714691748e
commit 04de70fd66

View File

@@ -100,7 +100,7 @@ def test_switch_back_to_in_memory():
shell.run_test("open-testing-db-file", ".open testing/testing.db", "")
# Then switch back to :memory:
shell.run_test("switch-back", ".open :memory:", "")
shell.run_test("schema-in-memory", ".schema users", "-- Error: Table 'users' not found.")
shell.run_test("schema-in-memory", ".schema users", "")
shell.quit()