Remove redundant code

This commit is contained in:
Ian Howell 2019-06-03 08:41:27 -05:00
parent 44f208ccad
commit e1edc45362
2 changed files with 0 additions and 2 deletions

View File

@ -25,7 +25,6 @@ func TestWorkflowInit(t *testing.T) {
t.Fatalf("Could not create root command: %s", err.Error())
}
workflowRoot := workflow.NewWorkflowCommand(settings)
workflowRoot.AddCommand(workflow.NewWorkflowInitCommand(settings))
rootCmd.AddCommand(workflowRoot)
cmdTests := []WorkflowCmdTest{

View File

@ -22,7 +22,6 @@ func TestWorkflowList(t *testing.T) {
t.Fatalf("Could not create root command: %s", err.Error())
}
workflowRoot := workflow.NewWorkflowCommand(settings)
workflowRoot.AddCommand(workflow.NewWorkflowListCommand(settings))
rootCmd.AddCommand(workflowRoot)
cmdTests := []WorkflowCmdTest{