Skip to content

Commit

Permalink
Ignore "feature request" of an always failing test.
Browse files Browse the repository at this point in the history
  • Loading branch information
johnmay committed Sep 13, 2015
1 parent 802ca5f commit 9347715
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -20,6 +20,7 @@

import org.junit.Assert;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;
import org.openscience.cdk.Atom;
import org.openscience.cdk.DefaultChemObjectBuilder;
Expand Down Expand Up @@ -546,7 +547,7 @@ public void testPartialPiChargeDescriptoCharge_2() throws ClassNotFoundException
* A unit test for JUnit. This molecule breaks with PETRA as well.
* @cdk.bug 1959099
*/
@Test
@Ignore("Bug was always present - and is not a regression. The non-charge seperated form of molecule produces the correct result.")
public void testPartialPiChargeDescriptoCharge_3() throws ClassNotFoundException, CDKException, java.lang.Exception {
double[] testResult = {-0.0379, -0.0032, 0.0, -0.0078, 0.0, 0.0488, 0.0, 0.0};/*
* from
Expand Down

3 comments on commit 9347715

@egonw
Copy link
Member

@egonw egonw commented on 9347715 Sep 13, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you please add a reference to the bug report number?

@johnmay
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's on the line above?

@egonw
Copy link
Member

@egonw egonw commented on 9347715 Sep 13, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Duh... sorry.

Please sign in to comment.