Explain test_open_text_given_encoding skip

This commit is contained in:
Padraic Fanning
2021-02-03 19:59:13 -05:00
parent b5a39e51ca
commit cde7fa215a

View File

@@ -28,7 +28,7 @@ class OpenTests:
result = fp.read()
self.assertEqual(result, 'Hello, UTF-8 world!\n')
@unittest.skip("TODO: RUSTPYTHON")
@unittest.skip("TODO: RUSTPYTHON, UnicodeDecodeError: cannot decode byte at index: 0")
def test_open_text_given_encoding(self):
with resources.open_text(
self.data, 'utf-16.file', 'utf-16', 'strict') as fp: