Skip to content

Commit 1621eaf

Browse files
committed
Fix format
1 parent da58606 commit 1621eaf

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

firebase-messaging/src/test/java/com/google/firebase/messaging/CommonNotificationBuilderRoboTest.java

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -446,8 +446,7 @@ public void createNotificationInfo_withInvalidVisibility() {
446446
CommonNotificationBuilder.createNotificationInfo(appContext, new NotificationParams(data));
447447

448448
// verify never set
449-
assertThat(notificationInfo.notificationBuilder.build().visibility)
450-
.isEqualTo(0);
449+
assertThat(notificationInfo.notificationBuilder.build().visibility).isEqualTo(0);
451450
}
452451

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

463462
// verify never set
464-
assertThat(notificationInfo.notificationBuilder.build().visibility)
465-
.isEqualTo(0);
463+
assertThat(notificationInfo.notificationBuilder.build().visibility).isEqualTo(0);
466464
}
467465

468466
@Test

0 commit comments

Comments
 (0)