summaryrefslogtreecommitdiff
path: root/test/unittest_utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/unittest_utils.py')
-rw-r--r--test/unittest_utils.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/test/unittest_utils.py b/test/unittest_utils.py
index d8c4c67..ef0cda2 100644
--- a/test/unittest_utils.py
+++ b/test/unittest_utils.py
@@ -11,14 +11,14 @@
# You should have received a copy of the GNU General Public License along with
# this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
-from logilab.common.testlib import TestCase
+import unittest
from astroid import test_utils
from pylint import utils
from pylint.checkers.utils import check_messages
-class PyLintASTWalkerTest(TestCase):
+class PyLintASTWalkerTest(unittest.TestCase):
class MockLinter(object):
def __init__(self, msgs):
self._msgs = msgs
@@ -58,6 +58,5 @@ class PyLintASTWalkerTest(TestCase):
if __name__ == '__main__':
- from logilab.common.testlib import unittest_main
- unittest_main()
+ unittest.main()