summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_importlib/test_open.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_importlib/test_open.py')
-rw-r--r--Lib/test/test_importlib/test_open.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_importlib/test_open.py b/Lib/test/test_importlib/test_open.py
index ad236c6..fd6e84b 100644
--- a/Lib/test/test_importlib/test_open.py
+++ b/Lib/test/test_importlib/test_open.py
@@ -19,9 +19,9 @@ class CommonTextTests(util.CommonResourceTests, unittest.TestCase):
class OpenTests:
def test_open_binary(self):
- with resources.open_binary(self.data, 'utf-8.file') as fp:
+ with resources.open_binary(self.data, 'binary.file') as fp:
result = fp.read()
- self.assertEqual(result, b'Hello, UTF-8 world!\n')
+ self.assertEqual(result, b'\x00\x01\x02\x03')
def test_open_text_default_encoding(self):
with resources.open_text(self.data, 'utf-8.file') as fp: