Skip to content

Commit

Permalink
Updated the DebugBond unit test too now: new DebugBond() has zero atoms
Browse files Browse the repository at this point in the history
  • Loading branch information
egonw committed Jul 28, 2010
1 parent ce9b1bd commit 6ef1fb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/org/openscience/cdk/debug/DebugBondTest.java
Expand Up @@ -52,7 +52,7 @@ public IChemObject newTestObject() {
@Test
public void testDebugBond() {
IBond bond = new DebugBond();
Assert.assertEquals(2, bond.getAtomCount());
Assert.assertEquals(0, bond.getAtomCount());
Assert.assertNull(bond.getAtom(0));
Assert.assertNull(bond.getAtom(1));
Assert.assertNull(bond.getOrder());
Expand Down

0 comments on commit 6ef1fb1

Please sign in to comment.