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 f0306d3 commit 9688ae5Copy full SHA for 9688ae5
nibabel/nicom/tests/test_csareader.py
@@ -15,8 +15,8 @@
15
from .test_dicomwrappers import (have_dicom, dicom_test,
16
IO_DATA_PATH, DATA)
17
18
-CSA2_B0 = open(pjoin(IO_DATA_PATH, 'csa2_b0.bin')).read()
19
-CSA2_B1000 = open(pjoin(IO_DATA_PATH, 'csa2_b1000.bin')).read()
+CSA2_B0 = open(pjoin(IO_DATA_PATH, 'csa2_b0.bin'), 'rb').read()
+CSA2_B1000 = open(pjoin(IO_DATA_PATH, 'csa2_b1000.bin'), 'rb').read()
20
21
22
@dicom_test
0 commit comments