From 26283c5242b9407b78f38fb3f44a1eb6d21e10bd Mon Sep 17 00:00:00 2001 From: Gerard Soldevila Date: Mon, 25 Mar 2024 13:28:12 +0100 Subject: [PATCH] Fix outdated test --- .../saved_objects/migrations/group4/v2_md5_to_mv.test.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/core/server/integration_tests/saved_objects/migrations/group4/v2_md5_to_mv.test.ts b/src/core/server/integration_tests/saved_objects/migrations/group4/v2_md5_to_mv.test.ts index 5bfa8a8fb98f8..1304044b63eb5 100644 --- a/src/core/server/integration_tests/saved_objects/migrations/group4/v2_md5_to_mv.test.ts +++ b/src/core/server/integration_tests/saved_objects/migrations/group4/v2_md5_to_mv.test.ts @@ -98,6 +98,7 @@ const HASH_TO_VERSION_MAP: Record = {}; HASH_TO_VERSION_MAP[`some-type|${SOME_TYPE_HASH}`] = '10.1.0'; // simulate that transition to modelVersion happened before 'another-type' was updated HASH_TO_VERSION_MAP[`another-type|${ANOTHER_TYPE_HASH}`] = '10.1.0'; +HASH_TO_VERSION_MAP[`no-mv-type|${A_THIRD_HASH}`] = '0.0.0'; describe('V2 algorithm', () => { let esServer: TestElasticsearchUtils['es'];