Skip to content

Commit

Permalink
Renabled test which was (accidentally?) outcommented when switching t…
Browse files Browse the repository at this point in the history
…o JUnit4 in commit 06a1a3d

Signed-off-by: Rajarshi Guha <rajarshi.guha@gmail.com>
  • Loading branch information
egonw authored and rajarshi committed Sep 7, 2010
1 parent 0c5187e commit ac82b12
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -47,7 +47,7 @@ public void testWienerNumbersDescriptor() throws Exception {
IAtomContainer mol = sp.parseSmiles("[H]C([H])([H])C([H])([H])C(=O)O");
AtomContainerManipulator.removeHydrogens(mol);
DoubleArrayResult retval = (DoubleArrayResult) descriptor.calculate(mol).getValue();
// OK: Assert.assertEquals(testResult[0], retval.get(0), 0.0001);
Assert.assertEquals(testResult[0], retval.get(0), 0.0001);
Assert.assertEquals(testResult[1], retval.get(1), 0.0001);
}
}
Expand Down

0 comments on commit ac82b12

Please sign in to comment.