From edc896c35f6ef5ab06c9b3142393438dde927d9b Mon Sep 17 00:00:00 2001 From: Edoardo Cavazza Date: Wed, 5 Nov 2025 09:38:15 +0100 Subject: [PATCH] Remove useless access to annotation storage in test --- test/unit/api_spec.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/test/unit/api_spec.js b/test/unit/api_spec.js index 04bb55162..b052ac732 100644 --- a/test/unit/api_spec.js +++ b/test/unit/api_spec.js @@ -4494,10 +4494,6 @@ Caron Broadcasting, Inc., an Ohio corporation (“Lessee”).`) ); const pdfDoc = await loadingTask.promise; const pdfPage = await pdfDoc.getPage(1); - - pdfDoc.annotationStorage.setValue("30R", { value: "test" }); - pdfDoc.annotationStorage.setValue("31R", { value: true }); - const opList = await pdfPage.getOperatorList({ annotationMode: AnnotationMode.DISABLE, });