Skip to content

Commit

Permalink
Fix function naming.
Browse files Browse the repository at this point in the history
Signed-off-by: Lentumunai-Mark <[email protected]>
  • Loading branch information
Lentumunai-Mark committed Oct 14, 2024
1 parent d6a8ab7 commit 916eec3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public void setUp() {
}

@Test
public void testOnPermissionsChecked_WhenAnyPermissionPermanentlyDenied() {
public void testOnPermissionsCheckedWhenAnyPermissionPermanentlyDenied() {
MultiplePermissionsReport report = Mockito.mock(MultiplePermissionsReport.class);
Mockito.when(report.isAnyPermissionPermanentlyDenied()).thenReturn(true);
Mockito.when(report.areAllPermissionsGranted()).thenReturn(false);
Expand All @@ -41,7 +41,7 @@ public void testOnPermissionsChecked_WhenAnyPermissionPermanentlyDenied() {
}

@Test
public void testOnPermissionsChecked_WhenAnyPermissionNotPermanentlyDenied() {
public void testOnPermissionsCheckedWhenAnyPermissionNotPermanentlyDenied() {
MultiplePermissionsReport report = Mockito.mock(MultiplePermissionsReport.class);
Mockito.when(report.isAnyPermissionPermanentlyDenied()).thenReturn(false);
Mockito.when(report.areAllPermissionsGranted()).thenReturn(false);
Expand Down

0 comments on commit 916eec3

Please sign in to comment.