Skip to content

Commit 3d86c9e

Browse files
committed
bring up to date
1 parent 3b41f0b commit 3d86c9e

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

src/dcqc/tests/bioformats_info_test.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff 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",

src/dcqc/tests/ome_xml_schema_test.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff 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",

0 commit comments

Comments
 (0)