Skip to content
This repository was archived by the owner on May 8, 2026. It is now read-only.

Commit b0a21a6

Browse files
committed
test: Fix invalid foo option in ITPipelineTest
1 parent b908a6a commit b0a21a6

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3883,7 +3883,11 @@ public void testPipelineInTransactionsWithOptions() throws Exception {
38833883
firestore
38843884
.runTransaction(
38853885
transaction -> {
3886-
PipelineExecuteOptions options = new PipelineExecuteOptions().with("foo", "bar");
3886+
PipelineExecuteOptions options =
3887+
new PipelineExecuteOptions()
3888+
.withExplainOptions(
3889+
new ExplainOptions()
3890+
.withExecutionMode(ExplainOptions.ExecutionMode.ANALYZE));
38873891
List<PipelineResult> results =
38883892
transaction.execute(pipeline, options).get().getResults();
38893893
assertThat(results).hasSize(1);

0 commit comments

Comments
 (0)