From 14ab135425ef41286e59e7f3d8ec0b22487b401a Mon Sep 17 00:00:00 2001
From: th-kim0823
Date: Fri, 15 May 2026 10:30:15 +0900
Subject: [PATCH] =?UTF-8?q?fix(test):=20migrations=20user=5Fversion=20late?=
=?UTF-8?q?st=207=20=E2=86=92=208=20(m008=20=EC=B6=94=EA=B0=80=20=EC=9E=94?=
=?UTF-8?q?=EC=97=AC=20fix)?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Co-Authored-By: Claude Opus 4.7 (1M context)
---
tests/unit/migrations.test.ts | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tests/unit/migrations.test.ts b/tests/unit/migrations.test.ts
index bc6da16..dbf4a0b 100644
--- a/tests/unit/migrations.test.ts
+++ b/tests/unit/migrations.test.ts
@@ -51,11 +51,11 @@ describe('migration v3 — soft delete columns', () => {
db.close();
});
- it('user_version reaches latest (7)', () => {
+ it('user_version reaches latest (8)', () => {
const db = new Database(':memory:');
runMigrations(db);
const row = db.prepare('PRAGMA user_version').get() as { user_version: number };
- expect(row.user_version).toBe(7);
+ expect(row.user_version).toBe(8);
db.close();
});