diff --git a/x-pack/solutions/observability/test/api_integration_deployment_agnostic/apis/ai_assistant/complete/functions/recall.spec.ts b/x-pack/solutions/observability/test/api_integration_deployment_agnostic/apis/ai_assistant/complete/functions/recall.spec.ts index 5c078f5aee736..84cfa638dc74e 100644 --- a/x-pack/solutions/observability/test/api_integration_deployment_agnostic/apis/ai_assistant/complete/functions/recall.spec.ts +++ b/x-pack/solutions/observability/test/api_integration_deployment_agnostic/apis/ai_assistant/complete/functions/recall.spec.ts @@ -56,21 +56,6 @@ export default function ApiTest({ getService }: DeploymentAgnosticFtrProviderCon expect(docTypes).to.eql(['animal', 'technical']); }); - it('returns entries in a consistent order', async () => { - const entries = await recall('whales'); - - expect(entries.map(({ id, esScore }) => `${formatScore(esScore!)} - ${id}`)).to.eql([ - 'high - animal_whale_migration_patterns', - 'low - animal_elephants_social_structure', - 'low - technical_api_gateway_timeouts', - 'low - technical_cache_misses_thirdparty_api', - 'low - animal_cheetah_life_speed', - 'low - technical_db_outage_slow_queries', - 'low - animal_giraffe_habitat_feeding', - 'low - animal_penguin_antarctic_adaptations', - ]); - }); - it('returns the "Cheetah" entry from search connectors as the top result', async () => { const entries = await recall('Cheetah'); const { text, esScore } = first(entries)!;