From 43c56c63002eb2f682dc9dc74ebe048ea0a1c93c Mon Sep 17 00:00:00 2001 From: Paul McCarthy <pauldmccarthy@gmail.com> Date: Fri, 29 Jan 2021 15:38:59 +0000 Subject: [PATCH] TEST: Missed one dcm2niix change --- tests/test_dicom.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/test_dicom.py b/tests/test_dicom.py index 50dc56e8..6ce2f779 100644 --- a/tests/test_dicom.py +++ b/tests/test_dicom.py @@ -189,7 +189,8 @@ def test_loadSeries(): assert 'PatientName' in img.metaKeys() assert 'MCCARTHY_PAUL' in img.metaValues() or \ 'MCCARTHY^PAUL' in img.metaValues() or \ - 'MCCARTHY_PAUL_2' in img.metaValues() + 'MCCARTHY_PAUL_2' in img.metaValues() or \ + 'MCCARTHY^PAUL^2' in img.metaValues() assert ('PatientName', 'MCCARTHY_PAUL') in img.metaItems() or \ ('PatientName', 'MCCARTHY^PAUL') in img.metaItems() or \ ('PatientName', 'MCCARTHY_PAUL_2') in img.metaItems() or \ -- GitLab