Skip to content

Commit

Permalink
Fix generic type.
Browse files Browse the repository at this point in the history
  • Loading branch information
raphw committed Oct 10, 2022
1 parent 8410220 commit 34110f8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public Iterator<Plugin.Engine.Source.Element> answer(InvocationOnMock invocation

@Test
public void testEmptyCompound() throws Exception {
assertThat(new Plugin.Engine.Source.Compound(Collections.emptyList()).read(), sameInstance((Plugin.Engine.Source.Origin) Plugin.Engine.Source.Empty.INSTANCE));
assertThat(new Plugin.Engine.Source.Compound(Collections.<Plugin.Engine.Source>emptyList()).read(), sameInstance((Plugin.Engine.Source.Origin) Plugin.Engine.Source.Empty.INSTANCE));
}

@Test
Expand Down

0 comments on commit 34110f8

Please sign in to comment.