summaryrefslogtreecommitdiff
path: root/test/test_import_graph.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_import_graph.py')
-rw-r--r--test/test_import_graph.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/test_import_graph.py b/test/test_import_graph.py
index 286096db0..ab86a769c 100644
--- a/test/test_import_graph.py
+++ b/test/test_import_graph.py
@@ -1,6 +1,6 @@
import sys
import os
-import unittest
+from logilab.common.testlib import unittest_main, TestCase
from os.path import exists
from cStringIO import StringIO
@@ -9,7 +9,7 @@ from pylint.lint import PyLinter
from utils import TestReporter
-class DependenciesGraphTC(unittest.TestCase):
+class DependenciesGraphTC(TestCase):
"""test the imports graph function"""
dest = 'dependencies_graph.dot'
@@ -34,7 +34,7 @@ URL="." node[shape="box"]
}
'''.strip())
-class ImportCheckerTC(unittest.TestCase):
+class ImportCheckerTC(TestCase):
def setUp(self):
self.linter = l = PyLinter(reporter=TestReporter())
initialize(l)
@@ -62,4 +62,4 @@ class ImportCheckerTC(unittest.TestCase):
pass
if __name__ == '__main__':
- unittest.main()
+ unittest_main()