gh-91984: Fix trailing spaces in multiline test strings in test_argparse (GH-91986)

This commit is contained in:
Abhigyan Bose 2022-04-28 16:59:24 +05:30 committed by GitHub
parent cd1fbbc817
commit 88dd227959
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 4 deletions

View file

@ -2265,8 +2265,7 @@ def test_help_blank(self):
main description
positional arguments:
foo
foo \n
options:
-h, --help show this help message and exit
'''))
@ -2282,8 +2281,7 @@ def test_help_blank(self):
main description
positional arguments:
{}
{} \n
options:
-h, --help show this help message and exit
'''))

View file

@ -0,0 +1 @@
Modified test strings in test_argparse.py to not contain trailing spaces before end of line.