Skip to content

Commit fa6ca76

Browse files
author
Alexandr Fedorov
committed
Update VeraPDF validation model version
DEVSIX-9036
1 parent c0e55a6 commit fa6ca76

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/test/java/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test.java

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -265,26 +265,25 @@ public void inputWithTitleTagTest(PdfUAConformance conformance) throws IOExcepti
265265

266266
@ParameterizedTest
267267
@MethodSource("conformanceLevels")
268-
// TODO DDEVSIX-9036 current VeraPdf version behaves incorrectly.
269268
public void svgBase64Test(PdfUAConformance conformance) throws IOException, InterruptedException {
270269
String sourceHtml = SOURCE_FOLDER + "svgBase64.html";
271270

272271
if (conformance == PdfUAConformance.PDF_UA_1) {
273272
String cmpPdfUa1 = SOURCE_FOLDER + "cmp_svgBase64Ua1.pdf";
274273
String destinationPdfUa1 = DESTINATION_FOLDER + "svgBase64Ua1.pdf";
275-
convertToUaAndCheckCompliance(conformance, sourceHtml, destinationPdfUa1, cmpPdfUa1, null, false, null);
274+
convertToUaAndCheckCompliance(conformance, sourceHtml, destinationPdfUa1, cmpPdfUa1, null, true, null);
276275
}
277276

278277
if (conformance == PdfUAConformance.PDF_UA_2) {
279278
String cmpPdfUa2 = SOURCE_FOLDER + "cmp_svgBase64Ua2.pdf";
280279
String destinationPdfUa2 = DESTINATION_FOLDER + "svgBase64Ua2.pdf";
281-
convertToUaAndCheckCompliance(conformance, sourceHtml, destinationPdfUa2, cmpPdfUa2, null, false, null);
280+
convertToUaAndCheckCompliance(conformance, sourceHtml, destinationPdfUa2, cmpPdfUa2, null, true, null);
282281
}
283282
}
284283

285284
@ParameterizedTest
286285
@MethodSource("conformanceLevels")
287-
// TODO DDEVSIX-9036 current VeraPdf version behaves incorrectly.
286+
// TODO DEVSIX-9580 current VeraPdf version behaves incorrectly.
288287
public void pngInDivStyleTest(PdfUAConformance conformance) throws IOException, InterruptedException {
289288
// Investigate why VeraPdf doesn't complain about the missing tag.
290289
String sourceHtml = SOURCE_FOLDER + "pngInDivStyle.html";

0 commit comments

Comments
 (0)