Skip to content

Commit

Permalink
abstract CWL test: recusively validate
Browse files Browse the repository at this point in the history
Fixes: #51
  • Loading branch information
mr-c committed Nov 4, 2023
1 parent da3ed63 commit b355f82
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_export_abstract.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
getdefault,
LoadingContext,
)
from cwltool.load_tool import recursive_resolve_and_validate_document
from cwltool.main import (
default_loader,
fetch_document,
resolve_and_validate_document,
tool_resolver,
)

Expand Down Expand Up @@ -140,7 +140,7 @@ def _run_example(as_dict, out=None):
)
loadingContext.resolver = getdefault(loadingContext.resolver, tool_resolver)
loadingContext, workflowobj, uri = fetch_document(out, loadingContext)
loadingContext, uri = resolve_and_validate_document(
loadingContext, uri = recursive_resolve_and_validate_document(
loadingContext,
workflowobj,
uri,
Expand Down

0 comments on commit b355f82

Please sign in to comment.