We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aefda49 commit d0ecd4eCopy full SHA for d0ecd4e
src/dcqc/tests/tiff_tag_306_date_time_test.py
@@ -19,7 +19,7 @@ def generate_process(self) -> Process:
19
"|",
20
"jq",
21
"-e",
22
- "'.[].ifds[].tags['306']'",
+ "'.[].ifds[].tags[\"306\"]'",
23
]
24
process = Process(
25
container="ghcr.io/sage-bionetworks-workflows/tifftools:latest",
tests/test_tests.py
@@ -267,7 +267,7 @@ def test_that_the_tifftag306datetimetest_command_is_produced(test_targets):
267
target = test_targets["tiff"]
268
test = tests.TiffTag306DateTimeTest(target)
269
process = test.generate_process()
270
- assert "grep" in process.command
+ assert "jq" in process.command
271
272
273
def test_that_the_tifftag306datetimetest_correctly_interprets_exit_code_0_and_1(
0 commit comments