From b5a39e51ca63187e274757fb598dfdb8e55bbaf0 Mon Sep 17 00:00:00 2001 From: Padraic Fanning Date: Wed, 3 Feb 2021 19:57:20 -0500 Subject: [PATCH] Unskip test_open_text_default_encoding --- Lib/test/test_importlib/test_open.py | 1 - 1 file changed, 1 deletion(-) diff --git a/Lib/test/test_importlib/test_open.py b/Lib/test/test_importlib/test_open.py index 4c740095e..1cf8e4e3b 100644 --- a/Lib/test/test_importlib/test_open.py +++ b/Lib/test/test_importlib/test_open.py @@ -23,7 +23,6 @@ class OpenTests: result = fp.read() self.assertEqual(result, b'\x00\x01\x02\x03') - @unittest.skip("TODO: RUSTPYTHON") def test_open_text_default_encoding(self): with resources.open_text(self.data, 'utf-8.file') as fp: result = fp.read()