Skip to content

Commit

Permalink
LPS-184376 SF
Browse files Browse the repository at this point in the history
  • Loading branch information
brianchandotcom committed Sep 20, 2023
1 parent 84fbad2 commit 547e973
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,16 +83,16 @@ public void testGetLabelsWithoutWarnings() {

Mockito.when(
_httpServletRequest.getAttribute(
FragmentEntryValidator.class.getName())
FragmentEntryProcessorRegistry.class.getName())
).thenReturn(
Mockito.mock(FragmentEntryValidator.class)
Mockito.mock(FragmentEntryProcessorRegistry.class)
);

Mockito.when(
_httpServletRequest.getAttribute(
FragmentEntryProcessorRegistry.class.getName())
FragmentEntryValidator.class.getName())
).thenReturn(
Mockito.mock(FragmentEntryProcessorRegistry.class)
Mockito.mock(FragmentEntryValidator.class)
);

Assert.assertEquals(1, _getLabelsSize());
Expand Down

0 comments on commit 547e973

Please sign in to comment.