Skip to content

Commit

Permalink
This is now a warning, there is no EOF status. However it should perh…
Browse files Browse the repository at this point in the history
…aps set a sensible message
  • Loading branch information
johnmay authored and egonw committed Dec 18, 2021
1 parent 14ef0fa commit a0aae18
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -95,7 +95,8 @@ public void testGetReturnStatus_EOF() throws CDKException {
parser.getAtomContainer();
INCHI_RET returnStatus = parser.getReturnStatus();
assertNotNull(returnStatus);
Assert.assertEquals(INCHI_RET.EOF, returnStatus);
Assert.assertEquals(INCHI_RET.WARNING, returnStatus);
// JNA-INCHI to fix there should be a message about EOF!
}

@Test
Expand Down

0 comments on commit a0aae18

Please sign in to comment.