Fix test class names

This commit is contained in:
mike cullerton 2022-02-21 12:56:04 -05:00
parent 6ec7241a7b
commit b20ccf02ae
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ from crc.scripts.script import Script
from crc.services.workflow_spec_service import WorkflowSpecService from crc.services.workflow_spec_service import WorkflowSpecService
class ScriptTemplate(Script): class GetSpecFromID(Script):
def get_description(self): def get_description(self):
return """Get workflow spec information from a workflow spec id""" return """Get workflow spec information from a workflow spec id"""

View File

@ -5,7 +5,7 @@ from crc.scripts.script import Script
from crc.services.workflow_spec_service import WorkflowSpecService from crc.services.workflow_spec_service import WorkflowSpecService
class ScriptTemplate(Script): class GetSpecFromWorkflowID(Script):
def get_description(self): def get_description(self):
return """Get a workflow spec, from a workflow id. You must pass in a workflow id.""" return """Get a workflow spec, from a workflow id. You must pass in a workflow id."""