Skip to content

Commit 0dbc981

Browse files
committed
Fix test - not longer information loss.
1 parent 42da2c1 commit 0dbc981

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

storage/ctab/src/test/java/org/openscience/cdk/io/MDLV2000WriterTest.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -622,8 +622,6 @@ public void testSingleDoubletRadical() throws Exception {
622622

623623
}
624624

625-
// XXX: information loss, CDK does not distinquish between divalence
626-
// singlet and triplet and only stores the unpaired electrons
627625
@Test
628626
public void testSingleTripletRadical() throws Exception {
629627

@@ -641,7 +639,7 @@ public void testSingleTripletRadical() throws Exception {
641639
String[] lines = sw.toString().split("\n");
642640

643641
assertThat("incorrect file length", lines.length, is(9));
644-
assertThat("incorrect radical output", lines[7], is("M RAD 1 2 1"));
642+
assertThat("incorrect radical output", lines[7], is("M RAD 1 2 3"));
645643
}
646644

647645
@Test

0 commit comments

Comments
 (0)