From 2d8d4d5c993963649a9c785c1acbb6b8bae014aa Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Sun, 5 May 2019 19:17:38 +0200 Subject: [PATCH] Small test fixes for parser utils --- test/test_parso_integration/test_parser_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_parso_integration/test_parser_utils.py b/test/test_parso_integration/test_parser_utils.py index 349e8cb9..2a9a7049 100644 --- a/test/test_parso_integration/test_parser_utils.py +++ b/test/test_parso_integration/test_parser_utils.py @@ -85,4 +85,4 @@ def test_get_call_signature(code, call_signature): node = node.children[0] assert parser_utils.get_call_signature(node) == call_signature - assert parser_utils.get_doc_with_call_signature(node) == call_signature + assert parser_utils.get_call_signature_for_any(node) == call_signature