File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed
src/test/java/com/uber/cadence Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -46,7 +46,6 @@ public void testOnlyOptionsAndEmptyAnnotationsPresent() throws NoSuchMethodExcep
4646 .setWorkflowIdReusePolicy (WorkflowIdReusePolicy .RejectDuplicate )
4747 .setMemo (getTestMemo ())
4848 .setSearchAttributes (getTestSearchAttributes ())
49- .setDefaultContextPropagators (false )
5049 .build ();
5150 WorkflowMethod a =
5251 WorkflowOptionsTest .class
Original file line number Diff line number Diff line change @@ -485,7 +485,7 @@ public void testNoDefaultOpenTelemetryContextPropagation() {
485485 testEnvironment .start ();
486486 WorkflowClient client = testEnvironment .newWorkflowClient ();
487487 WorkflowOptions options =
488- new WorkflowOptions .Builder ().setDefaultContextPropagators ( false ). build ();
488+ new WorkflowOptions .Builder ().build ();
489489
490490 try (Scope scope = span .makeCurrent ()) {
491491 TestWorkflow workflow = client .newWorkflowStub (TestWorkflow .class , options );
You can’t perform that action at this time.
0 commit comments