We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f113da1 commit 2efb747Copy full SHA for 2efb747
heudiconv/tests/test_dicoms.py
@@ -182,15 +182,15 @@ def test_get_datetime_from_dcm_wo_dt() -> None:
182
183
@pytest.mark.parametrize("dcmfile", TEST_DICOM_PATHS)
184
def test_create_seqinfo(
185
- dcmfile,
+ dcmfile: str,
186
) -> None:
187
mw = dw.wrapper_from_file(dcmfile)
188
seqinfo = create_seqinfo(mw, [dcmfile], op.basename(dcmfile))
189
assert seqinfo.sequence_name
190
191
192
193
-def test_get_reproducible_int(dcmfile) -> None:
+def test_get_reproducible_int(dcmfile:str) -> None:
194
assert type(get_reproducible_int([dcmfile])) is int
195
196
0 commit comments