Skip to content

Commit

Permalink
Fixed line lengths
Browse files Browse the repository at this point in the history
  • Loading branch information
egonw committed Mar 26, 2010
1 parent 189e044 commit f9ff266
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/test/org/openscience/cdk/io/MDLRXNReaderTest.java
Expand Up @@ -249,8 +249,14 @@ public class MDLRXNReaderTest extends SimpleChemObjectReaderTest {
IReactionSet reactionSet2 = (IReactionSet)reader.read(new NNReactionSet());
Assert.assertEquals(reactionSet.getReaction(0).getMappingCount(),reactionSet2.getReaction(0).getMappingCount());
for(int i=0;i<reactionSet.getReaction(0).getMappingCount();i++){
Assert.assertEquals(getAtomNumber(reactionSet,reactionSet.getReaction(0).getMapping(i).getChemObject(0)),getAtomNumber(reactionSet2,reactionSet2.getReaction(0).getMapping(i).getChemObject(0)));
Assert.assertEquals(getAtomNumber(reactionSet,reactionSet.getReaction(0).getMapping(i).getChemObject(1)),getAtomNumber(reactionSet2,reactionSet2.getReaction(0).getMapping(i).getChemObject(1)));
Assert.assertEquals(
getAtomNumber(reactionSet,reactionSet.getReaction(0).getMapping(i).getChemObject(0)),
getAtomNumber(reactionSet2,reactionSet2.getReaction(0).getMapping(i).getChemObject(0))
);
Assert.assertEquals(
getAtomNumber(reactionSet,reactionSet.getReaction(0).getMapping(i).getChemObject(1)),
getAtomNumber(reactionSet2,reactionSet2.getReaction(0).getMapping(i).getChemObject(1))
);
}
}

Expand Down

0 comments on commit f9ff266

Please sign in to comment.