Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
roypeled authored Aug 20, 2024
1 parent 6f88933 commit 04f310f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/verification.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -823,7 +823,7 @@ cases.forEach(testData => {
function decorator<T extends object>(target: unknown, propertyKey: string | symbol, descriptor: TypedPropertyDescriptor<T>) {
const originalMethod = descriptor.value;
if (originalMethod !== undefined) {
descriptor.value = new Proxy(originalMethod, {})
descriptor.value = new Proxy(originalMethod, {});
}
}

Expand Down

0 comments on commit 04f310f

Please sign in to comment.