Skip to content

Commit

Permalink
Updated test to assume new Bond() creates a bond with zero atoms
Browse files Browse the repository at this point in the history
Signed-off-by: Rajarshi  Guha <rajarshi.guha@gmail.com>
  • Loading branch information
egonw authored and rajarshi committed Jul 27, 2010
1 parent c5d4cd3 commit 4ac7111
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/org/openscience/cdk/BondTest.java
Expand Up @@ -53,7 +53,7 @@ public IChemObject newTestObject() {
@Test
public void testBond() {
IBond bond = new Bond();
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 4ac7111

Please sign in to comment.