Skip to content

Commit 04f310f

Browse files
authored
fix lint
1 parent 6f88933 commit 04f310f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/verification.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -823,7 +823,7 @@ cases.forEach(testData => {
823823
function decorator<T extends object>(target: unknown, propertyKey: string | symbol, descriptor: TypedPropertyDescriptor<T>) {
824824
const originalMethod = descriptor.value;
825825
if (originalMethod !== undefined) {
826-
descriptor.value = new Proxy(originalMethod, {})
826+
descriptor.value = new Proxy(originalMethod, {});
827827
}
828828
}
829829

0 commit comments

Comments
 (0)