Skip to content

Commit 293cc9f

Browse files
committed
test: change size limit
1 parent d03fae1 commit 293cc9f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/java/net/sourceforge/plantuml/servlet/TestMultipageUml.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public void testSvgIndexPage() throws IOException {
7676
String diagram = getContentText(conn);
7777
int diagramLen = diagram.length();
7878
Assertions.assertTrue(diagramLen > 4500);
79-
Assertions.assertTrue(diagramLen < 6000);
79+
Assertions.assertTrue(diagramLen < 8000);
8080
}
8181

8282
/**
@@ -98,7 +98,7 @@ public void testSvgIndexPageNoIndex() throws IOException {
9898
String diagram = getContentText(conn);
9999
int diagramLen = diagram.length();
100100
Assertions.assertTrue(diagramLen > 1500);
101-
Assertions.assertTrue(diagramLen < 4000);
101+
Assertions.assertTrue(diagramLen < 6000);
102102
}
103103

104104
/**

0 commit comments

Comments
 (0)