From acc0c181a85143e0113f1ec9cb838e86cd8df50f Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Sat, 12 May 2012 17:40:28 -0400 Subject: [PATCH] Remove a now worthless test. --- Lib/test/test_unicode.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/Lib/test/test_unicode.py b/Lib/test/test_unicode.py index 2eadd4df074..4024be7e6f4 100644 --- a/Lib/test/test_unicode.py +++ b/Lib/test/test_unicode.py @@ -1422,14 +1422,6 @@ class UnicodeTest(string_tests.CommonTest, self.assertRaises(TypeError, str, b"hello", "test.unicode2") self.assertRaises(TypeError, "hello".encode, "test.unicode1") self.assertRaises(TypeError, "hello".encode, "test.unicode2") - # executes PyUnicode_Encode() - import imp - self.assertRaises( - ImportError, - imp.find_module, - "non-existing module", - ["non-existing dir"] - ) # Error handling (wrong arguments) self.assertRaises(TypeError, "hello".encode, 42, 42, 42)