Make sure mimetypes is reinitialized before running the tests.

If some other test comes along and uses mimetypes, it will be
initialized from the system files.
diff --git a/Lib/test/test_mimetypes.py b/Lib/test/test_mimetypes.py
index 81829c1..fed0bf5 100644
--- a/Lib/test/test_mimetypes.py
+++ b/Lib/test/test_mimetypes.py
@@ -6,6 +6,7 @@
 
 # Tell it we don't know about external files:
 mimetypes.knownfiles = []
+mimetypes.inited = False
 
 
 class MimeTypesTestCase(unittest.TestCase):