Skip to content

Commit

Permalink
chore: print error
Browse files Browse the repository at this point in the history
  • Loading branch information
arnaudroques committed Jul 7, 2024
1 parent b51cc81 commit 2c96caa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/java/net/sourceforge/plantuml/servlet/TestImage.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ public void testVersionImage() throws IOException {
// Get the image and verify its size
byte[] inMemoryImage = getContentAsBytes(conn);
int diagramLen = inMemoryImage.length;
Assertions.assertTrue(diagramLen > 10000);
Assertions.assertTrue(diagramLen < 20000);
Assertions.assertTrue(diagramLen > 10000, "size = " + diagramLen);
Assertions.assertTrue(diagramLen < 30000, "size = " + diagramLen);
}

/**
Expand Down

0 comments on commit 2c96caa

Please sign in to comment.