Skip to content

Commit

Permalink
Fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
rlazo committed Dec 10, 2024
1 parent da58606 commit 1621eaf
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -446,8 +446,7 @@ public void createNotificationInfo_withInvalidVisibility() {
CommonNotificationBuilder.createNotificationInfo(appContext, new NotificationParams(data));

// verify never set
assertThat(notificationInfo.notificationBuilder.build().visibility)
.isEqualTo(0);
assertThat(notificationInfo.notificationBuilder.build().visibility).isEqualTo(0);
}

@Test
Expand All @@ -461,8 +460,7 @@ public void createNotificationInfo_withInvalidVisibility_outOfBoundVisibility()
CommonNotificationBuilder.createNotificationInfo(appContext, new NotificationParams(data));

// verify never set
assertThat(notificationInfo.notificationBuilder.build().visibility)
.isEqualTo(0);
assertThat(notificationInfo.notificationBuilder.build().visibility).isEqualTo(0);
}

@Test
Expand Down

0 comments on commit 1621eaf

Please sign in to comment.