Skip to content

Commit

Permalink
Fix import broken in b4c77b7
Browse files Browse the repository at this point in the history
  • Loading branch information
nsoranzo committed Nov 16, 2016
1 parent a86a457 commit dd55609
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/manual/workflows_scaling.py
Expand Up @@ -20,7 +20,8 @@
galaxy_root = os.path.abspath(os.path.join(os.path.dirname(__file__), os.path.pardir, os.path.pardir))
sys.path[1:1] = [ os.path.join( galaxy_root, "lib" ), os.path.join( galaxy_root, "test" ) ]

from api import helpers, yaml_to_workflow
from api import helpers
from api.workflows_format_2.converter import python_to_workflow

LONG_TIMEOUT = 1000000000
DESCRIPTION = "Script to exercise the workflow engine."
Expand Down Expand Up @@ -53,7 +54,7 @@ def main(argv=None):

gi = _gi(args)

workflow = yaml_to_workflow.python_to_workflow(workflow_struct)
workflow = python_to_workflow(workflow_struct)
workflow_info = gi.workflows.import_workflow_json(workflow)
workflow_id = workflow_info["id"]

Expand Down

0 comments on commit dd55609

Please sign in to comment.