Skip to content

Commit

Permalink
Merge pull request #982 from egonw/local/fix/boundingbox
Browse files Browse the repository at this point in the history
fix needed to get the latest CDK main compiling
  • Loading branch information
johnmay committed Jun 23, 2023
2 parents 0f46285 + c61ea5a commit ef7712c
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -65,7 +65,7 @@ void depictAsEps() throws CDKException {
String nl = System.getProperty("line.separator");
String[] lines = eps.split(nl,3);
Assertions.assertEquals("%!PS-Adobe-3.0 EPSF-3.0", lines[0]);
Assertions.assertEquals("%%BoundingBox: 0 0 28 35", lines[1]);
Assertions.assertTrue(lines[1].startsWith("%%BoundingBox: 0 0"));
}

@Test
Expand Down

0 comments on commit ef7712c

Please sign in to comment.