File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed
Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -9,14 +9,13 @@ class BioFormatsInfoTest(ExternalBaseTest):
99
1010 def generate_process (self ) -> Process :
1111 path = self .target .file .stage ()
12- string_path = self ._short_string_path (path , "dcqc-staged-" )
1312
1413 command_args = [
1514 "/opt/bftools/showinf" ,
1615 "-nopix" ,
1716 "-novalid" ,
1817 "-nocore" ,
19- string_path ,
18+ f"' { path . name } '" ,
2019 ]
2120 process = Process (
2221 container = "quay.io/sagebionetworks/bftools:latest" ,
Original file line number Diff line number Diff line change @@ -9,11 +9,10 @@ class OmeXmlSchemaTest(ExternalBaseTest):
99
1010 def generate_process (self ) -> Process :
1111 path = self .target .file .stage ()
12- string_path = self ._short_string_path (path , "dcqc-staged-" )
1312
1413 command_args = [
1514 "/opt/bftools/xmlvalid" ,
16- string_path ,
15+ f"' { path . name } '" ,
1716 ]
1817 process = Process (
1918 container = "quay.io/sagebionetworks/bftools:latest" ,
You can’t perform that action at this time.
0 commit comments