From 369ef033a28427481d639ba82c91ab3a4e3264fa Mon Sep 17 00:00:00 2001 From: yassinedorbozgithub Date: Mon, 16 Jun 2025 17:41:32 +0100 Subject: [PATCH] fix(api): apply feedback --- api/src/utils/test/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/utils/test/utils.ts b/api/src/utils/test/utils.ts index 7fa5b5fb..ec749240 100644 --- a/api/src/utils/test/utils.ts +++ b/api/src/utils/test/utils.ts @@ -104,7 +104,7 @@ const getModel = (name: string, suffix = ''): ModelDefinition => { const model = LifecycleHookManager.getModel(modelName); if (!model) { - throw new Error(`Unable to find model for name '${modelName}!`); + throw new Error(`Unable to find model for name '${modelName}!'`); } return model;