diff --git a/test/natives.test.ts b/test/natives.test.ts index bae8cd9d..dc65a1aa 100644 --- a/test/natives.test.ts +++ b/test/natives.test.ts @@ -13,8 +13,8 @@ should() const myModelNative = { model: { myModel: { - *nativeOne(_self: any): any { - return yield* (this as any).reify(1) + *nativeOne(this: any, _self: any): any { + return yield* this.reify(1) }, }, },