From 80ad5f10d4f5a23bbb91503f27d42ba2630ac9b7 Mon Sep 17 00:00:00 2001 From: BChoudhury-ms Date: Wed, 21 Jan 2026 15:59:26 +0530 Subject: [PATCH] update args type for FT data creation (#2330) --- test/sql/indexAdvisor.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/sql/indexAdvisor.spec.ts b/test/sql/indexAdvisor.spec.ts index 4d9ac6aa2..dc6ee978c 100644 --- a/test/sql/indexAdvisor.spec.ts +++ b/test/sql/indexAdvisor.spec.ts @@ -10,7 +10,7 @@ let CONTAINER_ID: string; // Set up test database and container with data before all tests test.beforeAll(async () => { - testContainer = await createTestSQLContainer(true); + testContainer = await createTestSQLContainer({ includeTestData: true }); DATABASE_ID = testContainer.database.id; CONTAINER_ID = testContainer.container.id; });