Skip to content

Commit 617c0f0

Browse files
author
Victor Wiebe
committed
fix: await on statement controllerTransfer
1 parent 9d1e4e4 commit 617c0f0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/procedures/__tests__/ControllerTransfer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ describe('ControllerTransfer', () => {
187187
})
188188
)
189189
).toEqual(true);
190-
expect(await resolverValue).toEqual([undefined, undefined]);
190+
await expect(resolverValue).toEqual([undefined, undefined]);
191191
expect(refreshStub.callCount).toEqual(2);
192192
});
193193
});

0 commit comments

Comments
 (0)