Skip to content

Commit

Permalink
refac: Observe 80 char line length limit.
Browse files Browse the repository at this point in the history
  • Loading branch information
teasp00n committed Jan 2, 2024
1 parent 1411ffc commit 3a07ac6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ycmd/tests/cs/subcommands_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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,
Expand Down

0 comments on commit 3a07ac6

Please sign in to comment.