From 04f310f5d07342cb782798bca88edaf127cf8b5f Mon Sep 17 00:00:00 2001 From: Roy Peled Date: Tue, 20 Aug 2024 14:52:47 +0300 Subject: [PATCH] fix lint --- test/verification.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/verification.spec.ts b/test/verification.spec.ts index 34a956f..206c25b 100644 --- a/test/verification.spec.ts +++ b/test/verification.spec.ts @@ -823,7 +823,7 @@ cases.forEach(testData => { function decorator(target: unknown, propertyKey: string | symbol, descriptor: TypedPropertyDescriptor) { const originalMethod = descriptor.value; if (originalMethod !== undefined) { - descriptor.value = new Proxy(originalMethod, {}) + descriptor.value = new Proxy(originalMethod, {}); } }