Another fix for #1414
diff --git a/Lib/test/test_frozen.py b/Lib/test/test_frozen.py
index 2de2535..05e8e8c 100644
--- a/Lib/test/test_frozen.py
+++ b/Lib/test/test_frozen.py
@@ -4,7 +4,6 @@
 from test.test_support import captured_stdout, run_unittest
 import unittest
 import sys, os
-import warnings
 
 class FrozenTests(unittest.TestCase):
     def test_frozen(self):
diff --git a/Lib/test/test_pkg.py b/Lib/test/test_pkg.py
index 1e32d2c..fde99dc 100644
--- a/Lib/test/test_pkg.py
+++ b/Lib/test/test_pkg.py
@@ -43,14 +43,18 @@
 # from package import * (defined in __init__)
 
 
-class Test(unittest.TestCase):
+class TestPkg(unittest.TestCase):
 
     def setUp(self):
         self.root = None
         self.syspath = list(sys.path)
+        self.sysmodules = sys.modules.copy()
 
     def tearDown(self):
         sys.path[:] = self.syspath
+        sys.modules.clear()
+        sys.modules.update(self.sysmodules)
+        del self.sysmodules
         cleanout(self.root)
 
     def run_code(self, code):