From 8df658b4299549a1c2a866f0fa8e3055a70cb04f Mon Sep 17 00:00:00 2001 From: Mohamed Marrouchi Date: Mon, 12 May 2025 17:07:39 +0100 Subject: [PATCH] fix: remove unused mock --- api/src/utils/test/mocks/nlp.ts | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/api/src/utils/test/mocks/nlp.ts b/api/src/utils/test/mocks/nlp.ts index 2cf7ae68..7c134391 100644 --- a/api/src/utils/test/mocks/nlp.ts +++ b/api/src/utils/test/mocks/nlp.ts @@ -32,22 +32,6 @@ export const mockNlpGreetingFullNameEntities: NLU.ParseEntities = { entity: 'lastname', value: 'doe', confidence: 0.5, - score: 0.425, - }, - ], -}; - -export const mockNlpGreetingWrongNameEntities: NLU.ParseEntities = { - entities: [ - { - entity: 'intent', - value: 'greeting', - confidence: 0.94, - }, - { - entity: 'firstname', - value: 'doe', - confidence: 0.33, }, ], };