* Update test_dotted_but_module_not_loaded to reflect the move of unittest.test to test.test_unittest.
del sys.modules['test.test_unittest.testmock.support']
del sys.modules['test.test_unittest.testmock']
del sys.modules['test.test_unittest']
- del sys.modules['unittest']
+ del sys.modules['test']
# now make sure we can patch based on a dotted path:
@patch('test.test_unittest.testmock.support.X')
--- /dev/null
+Fixed the failure of repeated runs of ``test.test_unittest`` caused by side effects in ``test_dotted_but_module_not_loaded``.