Move test_pep352 over to unittest.main()
diff --git a/Lib/test/test_pep352.py b/Lib/test/test_pep352.py
index 558cdb5..98debf0 100644
--- a/Lib/test/test_pep352.py
+++ b/Lib/test/test_pep352.py
@@ -180,8 +180,6 @@
         # Catching a string is bad.
         self.catch_fails("spam")
 
-def test_main():
-    run_unittest(ExceptionClassTests, UsageTests)
 
 if __name__ == '__main__':
-    test_main()
+    unittest.main()