diff --git a/src/test/org/openscience/cdk/smiles/smarts/parser/SMARTSSearchTest.java b/src/test/org/openscience/cdk/smiles/smarts/parser/SMARTSSearchTest.java index 13f5a1881aa..d06a2442e13 100644 --- a/src/test/org/openscience/cdk/smiles/smarts/parser/SMARTSSearchTest.java +++ b/src/test/org/openscience/cdk/smiles/smarts/parser/SMARTSSearchTest.java @@ -1732,5 +1732,10 @@ public void testBondOrderQueryKekuleVsSmiles() throws Exception { assertThat(match("[#6+0&R]=[#6+0&!R]", "C1=C2CCCC2CCC1"), is(new int[]{0, 0})); } + + @Test public void cyclopropane() throws Exception { + assertThat(match("**(*)*", "C1CC1"), + is(new int[]{0, 0})); + } }