X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/ca679cd17738bc3d74bcbe72f0351a74cdb33543..ca9ad698ef75736828b644678eba2f4836db6277:/tests/data/comments2.py diff --git a/tests/data/comments2.py b/tests/data/comments2.py index 53d4881..54b7b00 100644 --- a/tests/data/comments2.py +++ b/tests/data/comments2.py @@ -65,12 +65,18 @@ def inline_comments_in_brackets_ruin_everything(): body, children[-1], # )1 ] + parameters.children = [ + children[0], + body, + children[-1], # type: ignore + ] else: parameters.children = [ parameters.children[0], # (2 what if this was actually long body, parameters.children[-1], # )2 ] + parameters.children = [parameters.what_if_this_was_actually_long.children[0], body, parameters.children[-1]] # type: ignore if (self._proc is not None # has the child process finished? and self._returncode is None @@ -217,12 +223,22 @@ else: def inline_comments_in_brackets_ruin_everything(): if typedargslist: parameters.children = [children[0], body, children[-1]] # (1 # )1 + parameters.children = [ + children[0], + body, + children[-1], # type: ignore + ] else: parameters.children = [ parameters.children[0], # (2 what if this was actually long body, parameters.children[-1], # )2 ] + parameters.children = [ + parameters.what_if_this_was_actually_long.children[0], + body, + parameters.children[-1], + ] # type: ignore if ( self._proc is not None # has the child process finished?