Skip to content

Commit 60ef8fa

Browse files
author
Kate Ivanova
committed
Unignore table border tests and update cmp file
DEVSIX-6052
1 parent cf54906 commit 60ef8fa

File tree

3 files changed

+2
-7
lines changed

3 files changed

+2
-7
lines changed

layout/src/test/java/com/itextpdf/layout/TableBorderTest.java

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -104,11 +104,10 @@ public void cellWithBigRowspanOnThreePagesTest() throws IOException, Interrupted
104104
closeDocumentAndCompareOutputs(doc);
105105
}
106106

107+
@Test
107108
@LogMessages(messages = {
108-
@LogMessage(messageTemplate = IoLogMessageConstant.LAST_ROW_IS_NOT_COMPLETE)
109+
@LogMessage(messageTemplate = IoLogMessageConstant.LAST_ROW_IS_NOT_COMPLETE, count = 2)
109110
})
110-
@Test
111-
@Ignore("DEVSIX-1124")
112111
public void incompleteTableTest01() throws IOException, InterruptedException {
113112
fileName = "incompleteTableTest01.pdf";
114113
Document doc = createDocument();
@@ -125,12 +124,9 @@ public void incompleteTableTest01() throws IOException, InterruptedException {
125124
// row 2, cell 1
126125
cell = new Cell().add(new Paragraph("Three"));
127126
table.addCell(cell);
128-
129127
// row 3, cell 1
130128
cell = new Cell().add(new Paragraph("Four"));
131129
table.addCell(cell);
132-
133-
134130
doc.add(table);
135131

136132
doc.add(new AreaBreak());
@@ -141,7 +137,6 @@ public void incompleteTableTest01() throws IOException, InterruptedException {
141137
}
142138

143139
@Test
144-
@Ignore("DEVSIX-1124")
145140
public void incompleteTableTest02() throws IOException, InterruptedException {
146141
fileName = "incompleteTableTest02.pdf";
147142
Document doc = createDocument();

0 commit comments

Comments
 (0)