Skip to content

Commit 0b75061

Browse files
committed
Remove unnecessary assertions during test setup
1 parent 9afb4ba commit 0b75061

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

firebase-appdistribution/src/test/java/com/google/firebase/appdistribution/impl/FirebaseAppDistributionServiceImplTest.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -522,14 +522,10 @@ public void signOutTester_unsetsCachedNewRelease()
522522
throws InterruptedException, FirebaseAppDistributionException, ExecutionException {
523523
Task<AppDistributionReleaseInternal> setCachedNewReleaseTask =
524524
firebaseAppDistribution.getCachedNewRelease().set(TEST_RELEASE_NEWER_AAB_INTERNAL);
525-
526-
// Confirm that the cached new release is initially set
527525
awaitTask(setCachedNewReleaseTask);
528-
assertThat(setCachedNewReleaseTask.getResult()).isEqualTo(TEST_RELEASE_NEWER_AAB_INTERNAL);
529526

530527
// Sign out the tester
531528
firebaseAppDistribution.signOutTester();
532-
awaitAsyncOperations(lightweightExecutor);
533529

534530
// Confirm that the cached new release is now null
535531
Task<AppDistributionReleaseInternal> cachedNewReleaseTask =

0 commit comments

Comments
 (0)