@@ -16,7 +16,7 @@ def test_command_escape_message(capsys):
1616 captured = capsys .readouterr ()
1717 assert (
1818 captured .out
19- == f'::some-command::percent %25 percent %25 cr %0D cr %0D lf %0A lf %0A{ os .linesep } ' # noqa: E501
19+ == f'::some-command::percent %25 percent %25 cr %0D cr %0D lf %0A lf %0A{ os .linesep } '
2020 )
2121
2222 # verify literal escape sequences
@@ -32,14 +32,14 @@ def test_command_escape_property(capsys):
3232 issue_command (
3333 'some-command' ,
3434 {
35- 'name' : 'percent % percent % cr \r cr \r lf \n lf \n colon : colon : comma , comma ,' # noqa: E501
35+ 'name' : 'percent % percent % cr \r cr \r lf \n lf \n colon : colon : comma , comma ,'
3636 },
3737 '' ,
3838 )
3939 captured = capsys .readouterr ()
4040 assert (
4141 captured .out
42- == f'::some-command name=percent %25 percent %25 cr %0D cr %0D lf %0A lf %0A colon %3A colon %3A comma %2C comma %2C::{ os .linesep } ' # noqa: E501
42+ == f'::some-command name=percent %25 percent %25 cr %0D cr %0D lf %0A lf %0A colon %3A colon %3A comma %2C comma %2C::{ os .linesep } '
4343 )
4444
4545 # Verify literal escape sequences
@@ -51,7 +51,7 @@ def test_command_escape_property(capsys):
5151 captured = capsys .readouterr ()
5252 assert (
5353 captured .out
54- == f'::some-command::%2525 %2525 %250D %250D %250A %250A %253A %253A %252C %252C{ os .linesep } ' # noqa: E501
54+ == f'::some-command::%2525 %2525 %250D %250D %250A %250A %253A %253A %252C %252C{ os .linesep } '
5555 )
5656
5757
@@ -70,7 +70,7 @@ def test_command_with_message_properties(capsys):
7070 captured = capsys .readouterr ()
7171 assert (
7272 captured .out
73- == f'::some-command prop1=value 1,prop2=value 2::some message{ os .linesep } ' # noqa: E501
73+ == f'::some-command prop1=value 1,prop2=value 2::some message{ os .linesep } '
7474 )
7575
7676
@@ -102,7 +102,7 @@ def test_command_with_three_properties(capsys):
102102 captured = capsys .readouterr ()
103103 assert (
104104 captured .out
105- == f'::some-command prop1=value 1,prop2=value 2,prop3=value 3::{ os .linesep } ' # noqa: E501
105+ == f'::some-command prop1=value 1,prop2=value 2,prop3=value 3::{ os .linesep } '
106106 )
107107
108108
@@ -118,5 +118,5 @@ def test_command_with_non_string_props(capsys):
118118 )
119119
120120 captured = capsys .readouterr ()
121- part_out = '::some-command prop1={"test"%3A "object"},prop2=123,prop3=true::{"test": "object"}' # noqa: E501
121+ part_out = '::some-command prop1={"test"%3A "object"},prop2=123,prop3=true::{"test": "object"}'
122122 assert captured .out == f'{ part_out } { os .linesep } '
0 commit comments