Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
wezleytsai committed Apr 11, 2023
1 parent db8214f commit 3885f59
Showing 1 changed file with 4 additions and 1 deletion.
Expand Up @@ -102,7 +102,10 @@ public void shouldInitMocksWithGivenSettings() throws Exception {
assertTrue(hasExtraInterfaces instanceof List);
assertTrue(Mockito.mockingDetails(stubOnly).getMockCreationSettings().isStubOnly());

assertTrue(Mockito.mockingDetails(withoutAnnotations).getMockCreationSettings().isStripAnnotations());
assertTrue(
Mockito.mockingDetails(withoutAnnotations)
.getMockCreationSettings()
.isStripAnnotations());

assertEquals(0, noExtraConfig.intReturningMethod());
}
Expand Down

0 comments on commit 3885f59

Please sign in to comment.