Skip to content

Commit

Permalink
Add missing import
Browse files Browse the repository at this point in the history
  • Loading branch information
johnmay authored and egonw committed Mar 10, 2024
1 parent 1bb1872 commit 8d039b0
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -26,6 +26,7 @@

import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;
import org.openscience.cdk.exception.Intractable;
import org.openscience.cdk.graph.Cycles;
import org.openscience.cdk.interfaces.IAtom;
import org.openscience.cdk.interfaces.IAtomContainer;
Expand Down Expand Up @@ -176,7 +177,7 @@ void outOfMemoryExceptionInitialCycles() throws Exception {
Aromaticity aromaticity = new Aromaticity(ElectronDonation.daylight(), Cycles.or(Cycles.all(), Cycles.essential()));
AtomContainerManipulator.percieveAtomTypesAndConfigureAtoms(atomContainer);
Intractable error = Assertions.assertThrows(Intractable.class,
() -> {
() -> {
aromaticity.apply(atomContainer);
});
Assertions.assertNotNull(error);
Expand Down

0 comments on commit 8d039b0

Please sign in to comment.