From 2514e30734343fb7341d537797a21e5ddca99fb3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fredrik=20Adel=C3=B6w?= Date: Sat, 4 Apr 2026 22:57:11 +0200 Subject: [PATCH] Fix misleading comment about bootstrap row in migration test MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Fredrik Adelöw Made-with: Cursor --- plugins/catalog-backend/src/tests/migrations.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/catalog-backend/src/tests/migrations.test.ts b/plugins/catalog-backend/src/tests/migrations.test.ts index 05d05a35e4..6e067a8126 100644 --- a/plugins/catalog-backend/src/tests/migrations.test.ts +++ b/plugins/catalog-backend/src/tests/migrations.test.ts @@ -1104,8 +1104,8 @@ describe('migrations', () => { '20260403000000_add_location_entity_ref.js', ); - // The bootstrap location row was added by an earlier migration; it should - // NOT receive a location_entity_ref value. + // The bootstrap location row was added by an earlier migration; after this + // migration it will have an empty-string placeholder for location_entity_ref. const [bootstrapRow] = await knex('locations').where('type', 'bootstrap'); expect(bootstrapRow).toBeDefined();