Skip to content

Commit

Permalink
Remove unused variable in CLI (#1436)
Browse files Browse the repository at this point in the history
  • Loading branch information
robholland committed Apr 9, 2021
1 parent 6d17915 commit d3178aa
Showing 1 changed file with 0 additions and 18 deletions.
18 changes: 0 additions & 18 deletions tools/cli/app_test.go
Expand Up @@ -239,24 +239,6 @@ func (s *cliAppSuite) TestNamespaceDescribe_Failed() {

var (
eventType = enumspb.EVENT_TYPE_WORKFLOW_EXECUTION_STARTED

getWorkflowExecutionHistoryResponse = &workflowservice.GetWorkflowExecutionHistoryResponse{
History: &historypb.History{
Events: []*historypb.HistoryEvent{
{
EventType: eventType,
Attributes: &historypb.HistoryEvent_WorkflowExecutionStartedEventAttributes{WorkflowExecutionStartedEventAttributes: &historypb.WorkflowExecutionStartedEventAttributes{
WorkflowType: &commonpb.WorkflowType{Name: "TestWorkflow"},
TaskQueue: &taskqueuepb.TaskQueue{Name: "taskQueue"},
WorkflowRunTimeout: timestamp.DurationPtr(60 * time.Second),
WorkflowTaskTimeout: timestamp.DurationPtr(10 * time.Second),
Identity: "tester",
}},
},
},
},
NextPageToken: nil,
}
)

func (s *cliAppSuite) TestShowHistory() {
Expand Down

0 comments on commit d3178aa

Please sign in to comment.