summaryrefslogtreecommitdiff
path: root/test/unittest_checker_variables.py
diff options
context:
space:
mode:
authorTorsten Marek <shlomme@gmail.com>2014-07-26 17:11:14 +0200
committerTorsten Marek <shlomme@gmail.com>2014-07-26 17:11:14 +0200
commitd1448a7e57738393a9b51d890e4cd5f163997f52 (patch)
tree3a297759ab17b823b769784dea7d2c758d1af0c6 /test/unittest_checker_variables.py
parent30793941b79daaeb7368c87eea35614254b65ddd (diff)
downloadpylint-d1448a7e57738393a9b51d890e4cd5f163997f52.tar.gz
Remove dependency on logilab.testlib in the test suite (also removes Python 2.5 compatibility).
Diffstat (limited to 'test/unittest_checker_variables.py')
-rw-r--r--test/unittest_checker_variables.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/test/unittest_checker_variables.py b/test/unittest_checker_variables.py
index a3776d7..fa012b7 100644
--- a/test/unittest_checker_variables.py
+++ b/test/unittest_checker_variables.py
@@ -1,7 +1,7 @@
"""Unit tests for the variables checker."""
-from __future__ import with_statement
import sys
import os
+import unittest
from astroid import test_utils
from pylint.checkers import variables
@@ -53,5 +53,4 @@ class MissingSubmoduleTest(CheckerTestCase):
sys.path.pop(0)
if __name__ == '__main__':
- from logilab.common.testlib import unittest_main
- unittest_main()
+ unittest.main()