From 2746cc8d05ab90be6b06d15d2077fbdc3698191d Mon Sep 17 00:00:00 2001 From: Padraic Fanning Date: Mon, 8 Feb 2021 21:25:49 -0500 Subject: [PATCH] Unskip test_formatting_huge_width --- Lib/test/test_unicode.py | 1 - 1 file changed, 1 deletion(-) diff --git a/Lib/test/test_unicode.py b/Lib/test/test_unicode.py index 420ca0dec..8a2539de0 100644 --- a/Lib/test/test_unicode.py +++ b/Lib/test/test_unicode.py @@ -1523,7 +1523,6 @@ class UnicodeTest(string_tests.CommonTest, with self.assertRaises(ValueError): result = format_string % 2.34 - @unittest.skip("TODO: RUSTPYTHON") def test_formatting_huge_width(self): format_string = "%{}f".format(sys.maxsize + 1) with self.assertRaises(ValueError):