Skip to content

Commit a719ca1

Browse files
committed
Fix test
1 parent 89f67fe commit a719ca1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

display/renderbasic/src/test/java/org/openscience/cdk/renderer/generators/standard/StandardAtomGeneratorTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@ public void generatesRgroupPseudoAtom() {
401401
IAtomContainer container = mock(IAtomContainer.class);
402402
IPseudoAtom atom = mock(IPseudoAtom.class);
403403
when(atom.getLabel()).thenReturn("R1");
404-
AtomSymbol atomSymbol = atomGenerator.generateSymbol(container, atom, HydrogenPosition.Left, new RendererModel());
404+
AtomSymbol atomSymbol = atomGenerator.generateSymbol(container, atom, HydrogenPosition.Left, null);
405405
List<Shape> shapes = atomSymbol.getOutlines();
406406
assertThat(shapes.size(), is(2));
407407
}

0 commit comments

Comments
 (0)