Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Resolve regressions from recent patches - one is a behaviour change w…
…hich we now need and ignore the test for.
  • Loading branch information
johnmay committed Sep 13, 2015
1 parent d30f869 commit eeb4be0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Expand Up @@ -24,6 +24,7 @@

package org.openscience.cdk.renderer;

import org.junit.Ignore;
import org.junit.Test;
import org.openscience.cdk.Atom;
import org.openscience.cdk.Bond;
Expand Down Expand Up @@ -148,7 +149,7 @@ public void iupacCarbonParallel() {
}

// produces an NaN internally
@Test
@Ignore("Multiple Group Sgroup rendering can have zero length C-C bonds (e.g. overlaid coords), we don't want to show the symbols")
public void iupacCarbonCornerCase() {
IAtom a1 = new Atom("C");
IAtom a2 = new Atom("C");
Expand Down
Expand Up @@ -848,6 +848,7 @@ private void writeSgroups(IAtomContainer container, BufferedWriter writer) throw
}
writer.newLine();
}
break;
case CtabComponentNumber:
Integer compNumber = sgroup.getValue(key);
writer.write("M SNC");
Expand Down

0 comments on commit eeb4be0

Please sign in to comment.