From 22db9f35546755f9dfb1a2d5d6b7871cfa3b5df9 Mon Sep 17 00:00:00 2001 From: Joseph Doherty Date: Sun, 26 Apr 2026 15:49:25 -0400 Subject: [PATCH] test: bump schema_version assertion to 8 after 0008_group_node migration --- 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 29a0bb0..f96a538 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_7(tmp_path): +def test_schema_version_after_migration_is_8(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]) == 7 + assert int(row[0]) == 8