diff --git a/ycmd/tests/cs/subcommands_test.py b/ycmd/tests/cs/subcommands_test.py index 5d91f75445..5f77f45b0b 100644 --- a/ycmd/tests/cs/subcommands_test.py +++ b/ycmd/tests/cs/subcommands_test.py @@ -919,8 +919,8 @@ def test_Subcommands_GoToDocumentOutline( self, app ): filepath = PathToTestFile( 'testy', 'GotoTestCase.cs' ) with WrapOmniSharpServer( app, filepath ): - # the command name and file are the only relevant arguments for this subcommand. - # our current cursor position in the file doesn't matter. + # the command name and file are the only relevant arguments for this + # subcommand, our current cursor position in the file doesn't matter. request = BuildRequest( command_arguments = [ 'GoToDocumentOutline' ], line_num = 11, column_num = 2, @@ -977,8 +977,8 @@ def test_Subcommands_GoToDocumentOutline_Empty( self, app ): filepath = PathToTestFile( 'testy', 'Empty.cs' ) with WrapOmniSharpServer( app, filepath ): - # the command name and file are the only relevant arguments for this subcommand. - # our current cursor position in the file doesn't matter. + # the command name and file are the only relevant arguments for this + # subcommand. our current cursor position in the file doesn't matter. request = BuildRequest( command_arguments = [ 'GoToDocumentOutline' ], line_num = 0, column_num = 0,