Skip to content

Commit

Permalink
Actually fix the formatter error
Browse files Browse the repository at this point in the history
  • Loading branch information
Hopding committed Nov 6, 2021
1 parent b692b96 commit c32a8bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/api/PDFImage.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ describe(`PDFImage`, () => {
const ref = pdfDoc.context.nextRef();
const pdfImage = PDFImage.of(ref, pdfDoc, embedder);

// prettier-ignore
const task = () => pdfImage['embedTask']
// tslint:disable-next-line
const task = () => pdfImage['embedTask'];

expect(task()).toBeUndefined();

Expand Down

0 comments on commit c32a8bc

Please sign in to comment.