summaryrefslogtreecommitdiff
path: root/pylint/test/unittest_checker_strings.py
diff options
context:
space:
mode:
Diffstat (limited to 'pylint/test/unittest_checker_strings.py')
-rw-r--r--pylint/test/unittest_checker_strings.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/test/unittest_checker_strings.py b/pylint/test/unittest_checker_strings.py
index eaf7663e5..9c6d76995 100644
--- a/pylint/test/unittest_checker_strings.py
+++ b/pylint/test/unittest_checker_strings.py
@@ -34,7 +34,7 @@ class StringCheckerTest(CheckerTestCase):
code = "b'test'.format(1, 2)"
node = test_utils.extract_node(code)
with self.assertNoMessages():
- self.checker.visit_callfunc(node)
+ self.checker.visit_call(node)
if __name__ == '__main__':