From 1d6768e98077e4fba398730dc61fb07211f1a10f Mon Sep 17 00:00:00 2001 From: Joseph Doherty Date: Mon, 27 Apr 2026 02:28:11 -0400 Subject: [PATCH] test: bump schema_version assertion to 13 (0012 embeddings + 0013 branches) --- tests/test_world.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_world.py b/tests/test_world.py index 6934e12..688b38f 100644 --- a/tests/test_world.py +++ b/tests/test_world.py @@ -324,11 +324,11 @@ def test_get_scene_returns_none_for_missing(tmp_path): assert active_scene(conn, "chat_missing") is None -def test_schema_version_after_migration_is_11(tmp_path): +def test_schema_version_after_migration_is_13(tmp_path): db = tmp_path / "t.db" apply_migrations(db) with open_db(db) as conn: row = conn.execute( "SELECT value FROM meta WHERE key = 'schema_version'" ).fetchone() - assert int(row[0]) == 11 + assert int(row[0]) == 13