summaryrefslogtreecommitdiff
path: root/pylint/test/functional/super_checks.py
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2015-12-07 15:40:25 +0200
committerClaudiu Popa <pcmanticore@gmail.com>2015-12-07 15:40:25 +0200
commit403df92d1710267ae5b7fe215acd9357a8cbf251 (patch)
treecc7337fb8a9f088550531dc3bb1204e643982ffc /pylint/test/functional/super_checks.py
parent1fc333e90d0328f878c8a58084eb2cba536d0b4b (diff)
parent9e0620833d014a0c8d34b6bf8c908e01b3ac7e70 (diff)
downloadpylint-403df92d1710267ae5b7fe215acd9357a8cbf251.tar.gz
Merged in jakirkham/pylint/issue_538_pt2 (pull request #315)
Add another check of the current working directory for `.pylintrc`.
Diffstat (limited to 'pylint/test/functional/super_checks.py')
-rw-r--r--pylint/test/functional/super_checks.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/test/functional/super_checks.py b/pylint/test/functional/super_checks.py
index 14fd5a2..f4aec0a 100644
--- a/pylint/test/functional/super_checks.py
+++ b/pylint/test/functional/super_checks.py
@@ -65,9 +65,9 @@ class SuperDifferentScope(object):
class UnknownBases(Missing):
"""Don't emit if we don't know all the bases."""
def __init__(self):
- # pylint: disable=super-on-old-class
super(UnknownBases, self).__init__()
super(UnknownBases, self).test()
+ super(Missing, self).test() # [bad-super-call]
# Test that we are detecting proper super errors.