@@ -38,8 +38,6 @@ def test_default_values(self):
3838 assert options .task_start_to_close_timeout is None
3939 assert options .workflow_id_reuse_policy == WorkflowIdReusePolicy .WORKFLOW_ID_REUSE_POLICY_ALLOW_DUPLICATE
4040 assert options .cron_schedule is None
41- assert options .memo is None
42- assert options .search_attributes is None
4341
4442 def test_custom_values (self ):
4543 """Test setting custom values for StartWorkflowOptions."""
@@ -49,9 +47,7 @@ def test_custom_values(self):
4947 execution_start_to_close_timeout = timedelta (minutes = 30 ),
5048 task_start_to_close_timeout = timedelta (seconds = 10 ),
5149 workflow_id_reuse_policy = WorkflowIdReusePolicy .WORKFLOW_ID_REUSE_POLICY_REJECT_DUPLICATE ,
52- cron_schedule = "0 * * * *" ,
53- memo = {"key" : "value" },
54- search_attributes = {"attr" : "value" }
50+ cron_schedule = "0 * * * *"
5551 )
5652
5753 assert options .workflow_id == "custom-id"
@@ -60,8 +56,6 @@ def test_custom_values(self):
6056 assert options .task_start_to_close_timeout == timedelta (seconds = 10 )
6157 assert options .workflow_id_reuse_policy == WorkflowIdReusePolicy .WORKFLOW_ID_REUSE_POLICY_REJECT_DUPLICATE
6258 assert options .cron_schedule == "0 * * * *"
63- assert options .memo == {"key" : "value" }
64- assert options .search_attributes == {"attr" : "value" }
6559
6660
6761
0 commit comments