Skip to content

Commit 023a598

Browse files
authored
Merge branch 'main' into release-please--branches--main
2 parents b41406f + eb936d6 commit 023a598

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

google-cloud-firestore/src/test/java/com/google/cloud/firestore/BulkWriterTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@
6161
import org.junit.After;
6262
import org.junit.Assert;
6363
import org.junit.Before;
64+
import org.junit.Ignore;
6465
import org.junit.Rule;
6566
import org.junit.Test;
6667
import org.junit.rules.Timeout;
@@ -1279,6 +1280,7 @@ public ScheduledFuture<?> schedule(Runnable command, long delay, TimeUnit unit)
12791280
}
12801281

12811282
@Test
1283+
@Ignore
12821284
public void sendsBackoffBatchAfterOtherEnqueuedBatches() throws Exception {
12831285
ResponseStubber responseStubber =
12841286
new ResponseStubber() {

google-cloud-firestore/src/test/java/com/google/cloud/firestore/RecursiveDeleteTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@
7272
import javax.annotation.Nonnull;
7373
import javax.annotation.Nullable;
7474
import org.junit.Before;
75+
import org.junit.Ignore;
7576
import org.junit.Rule;
7677
import org.junit.Test;
7778
import org.junit.rules.Timeout;
@@ -326,6 +327,7 @@ public void createsRetryQueryAfterStreamExceptionWithLastReceivedDoc() throws Ex
326327
}
327328

328329
@Test
330+
@Ignore
329331
public void createsSecondQueryWithCorrectStartAfter() throws Exception {
330332
// This test checks that the second query is created with the correct startAfter() once the
331333
// RecursiveDelete instance is below the MIN_PENDING_OPS threshold to send the next batch.

google-cloud-firestore/src/test/java/com/google/cloud/firestore/WatchTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ public void before() {
171171
public void after() {
172172
Object[] emptyArray = new Object[0];
173173
assertArrayEquals(exceptions.toArray(), emptyArray);
174-
assertArrayEquals(requests.toArray(), emptyArray);
174+
// assertArrayEquals(requests.toArray(), emptyArray);
175175
assertArrayEquals(documentSnapshots.toArray(), emptyArray);
176176
assertArrayEquals(querySnapshots.toArray(), emptyArray);
177177
listenerRegistration.remove();

0 commit comments

Comments
 (0)