Skip to content

Commit fa853f6

Browse files
schmidt-sebastianpongad
authored andcommitted
Waiting for Task completion in addAndRemoveFields (googleapis#2950)
Fixes googleapis#2945.
1 parent 1fc5c1b commit fa853f6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

google-cloud-firestore/src/test/java/com/google/cloud/firestore/it/ITSystemTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -552,7 +552,7 @@ public void addAndRemoveFields() throws ExecutionException, InterruptedException
552552
randomDoc.create(Collections.<String, Object>emptyMap()).get();
553553
assertEquals(expected, getData());
554554

555-
randomDoc.delete();
555+
randomDoc.delete().get();
556556
assertFalse(randomDoc.get().get().exists());
557557

558558
randomDoc.create(map("a", map("b", "c"))).get();

0 commit comments

Comments
 (0)