Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tests/lib/runall.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lib/runall.py')
-rw-r--r--tests/lib/runall.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/lib/runall.py b/tests/lib/runall.py
index 6ee9442..ae1bb3a 100644
--- a/tests/lib/runall.py
+++ b/tests/lib/runall.py
@@ -17,14 +17,12 @@
import unittest
-import test_date
import test_mime
runner = unittest.TextTestRunner()
loader = unittest.TestLoader()
suite = unittest.TestSuite()
-suite.addTest(loader.loadTestsFromModule(test_date))
suite.addTest(loader.loadTestsFromModule(test_mime))
runner.run(suite)