Skip to content

Commit

Permalink
5000L (long) default timeout in ms
Browse files Browse the repository at this point in the history
  • Loading branch information
johnmay authored and egonw committed Dec 18, 2021
1 parent 8c9e995 commit b94ca4f
Showing 1 changed file with 1 addition and 3 deletions.
Expand Up @@ -990,8 +990,6 @@ public void testFiveSecondTimeoutFlag() throws Exception {
ac.addAtom(new Atom("C"));
InChIGeneratorFactory factory = InChIGeneratorFactory.getInstance();
InChIGenerator generator = factory.getInChIGenerator(ac);

String flagChar = System.getProperty("os.name", "").toLowerCase().startsWith("windows") ? "/" : "-";
assertThat(generator.options.getTimeoutMilliSeconds(), is(5000));
assertThat(generator.options.getTimeoutMilliSeconds(), is(5000L));
}
}

0 comments on commit b94ca4f

Please sign in to comment.