From 57fe8d417f5de67ea8dc3f73b8553e1170a9ef36 Mon Sep 17 00:00:00 2001 From: sbriat Date: Wed, 6 Sep 2023 16:57:22 +0200 Subject: [PATCH] fix tests --- .../ad/core/application/queries/match/algorithm.abstract.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/ad/core/application/queries/match/algorithm.abstract.ts b/src/modules/ad/core/application/queries/match/algorithm.abstract.ts index c5df2d4..7fe7d78 100644 --- a/src/modules/ad/core/application/queries/match/algorithm.abstract.ts +++ b/src/modules/ad/core/application/queries/match/algorithm.abstract.ts @@ -13,7 +13,7 @@ export abstract class Algorithm { ) {} /** - * Filter candidates that matches the query + * Return Ads that matches the query as Matches */ match = async (): Promise => { this.candidates = await this.selector.select();