From: Yaroslav Halchenko <debian@onerussian.com>
Subject: Disable Unicode filenames handling 
 Unicode+Python in a minimal debian env without locales
 configured and code insisting on non-ascii encodable filenames
 is the task for masocists.. thus  cheated for today
Bug-Debian: http://bugs.debian.org/
Bug-Ubuntu: https://launchpad.net/bugs/
Last-Update: 2018-06-25

--- a/pydicom/tests/test_filereader.py
+++ b/pydicom/tests/test_filereader.py
@@ -107,7 +107,7 @@ class ReaderTests(unittest.TestCase):
         self.assertEqual(empty_number_tags_ds.VectorGridData, '')
 
     def testUTF8FileName(self):
-        utf8_filename = os.path.join(tempfile.gettempdir(), "ДИКОМ.dcm")
+        utf8_filename = os.path.join(tempfile.gettempdir(), "DICOM.dcm")
         shutil.copyfile(rtdose_name, utf8_filename)
         ds = dcmread(utf8_filename)
         os.remove(utf8_filename)
--- a/pydicom/tests/test_gdcm_pixel_data.py
+++ b/pydicom/tests/test_gdcm_pixel_data.py
@@ -106,13 +106,13 @@ class GDCM_JPEG_LS_Tests_no_gdcm(unittes
     def setUp(self):
         if compat.in_py2:
             self.utf8_filename = os.path.join(
-                tempfile.gettempdir(), "ДИКОМ.dcm")
+                tempfile.gettempdir(), "DICOM.dcm")
             self.unicode_filename = self.utf8_filename.decode("utf8")
             shutil.copyfile(jpeg_ls_lossless_name.decode("utf8"),
                             self.unicode_filename)
         else:
             self.unicode_filename = os.path.join(
-                tempfile.gettempdir(), "ДИКОМ.dcm")
+                tempfile.gettempdir(), "DICOM.dcm")
             shutil.copyfile(jpeg_ls_lossless_name, self.unicode_filename)
         self.jpeg_ls_lossless = dcmread(self.unicode_filename)
         self.mr_small = dcmread(mr_name)
@@ -243,13 +243,13 @@ class GDCM_JPEG_LS_Tests_with_gdcm(unitt
     def setUp(self):
         if compat.in_py2:
             self.utf8_filename = os.path.join(
-                tempfile.gettempdir(), "ДИКОМ.dcm")
+                tempfile.gettempdir(), "DICOM.dcm")
             self.unicode_filename = self.utf8_filename.decode("utf8")
             shutil.copyfile(jpeg_ls_lossless_name.decode("utf8"),
                             self.unicode_filename)
         else:
             self.unicode_filename = os.path.join(
-                tempfile.gettempdir(), "ДИКОМ.dcm")
+                tempfile.gettempdir(), "DICOM.dcm")
             shutil.copyfile(jpeg_ls_lossless_name, self.unicode_filename)
         self.jpeg_ls_lossless = dcmread(self.unicode_filename)
         self.mr_small = dcmread(mr_name)
