File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -551,18 +551,18 @@ def test_checker(self):
551
551
# mismatches its sink type.
552
552
with self .assertRaises (schema_salad .validate .ValidationException ):
553
553
f = cwltool .factory .Factory ()
554
- f .make ("tests/checker_wf/broken-wf.cwl" )
554
+ f .make (get_data ( "tests/checker_wf/broken-wf.cwl" ) )
555
555
with self .assertRaises (schema_salad .validate .ValidationException ):
556
556
f = cwltool .factory .Factory ()
557
- f .make ("tests/checker_wf/broken-wf2.cwl" )
557
+ f .make (get_data ( "tests/checker_wf/broken-wf2.cwl" ) )
558
558
559
559
def test_var_spool_cwl_checker (self ):
560
560
""" Confirm that references to /var/spool/cwl are caught."""
561
561
with self .assertRaises (schema_salad .validate .ValidationException ):
562
562
f = cwltool .factory .Factory ()
563
- f .make ("tests/non_portable.cwl" )
563
+ f .make (get_data ( "tests/non_portable.cwl" ) )
564
564
f = cwltool .factory .Factory (strict = False )
565
- f .make ("tests/non_portable.cwl" )
565
+ f .make (get_data ( "tests/non_portable.cwl" ) )
566
566
567
567
class TestPrintDot (unittest .TestCase ):
568
568
def test_print_dot (self ):
You can’t perform that action at this time.
0 commit comments