Skip to content

Commit

Permalink
Attempt to fix C# tests
Browse files Browse the repository at this point in the history
  • Loading branch information
bstaletic committed Aug 12, 2024
1 parent c3f281e commit 1305b9b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ycmd/completers/cs/cs_completer.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@
)
if utils.OnWindows():
PATH_TO_OMNISHARP_ROSLYN_BINARY = os.path.join(
PATH_TO_ROSLYN_OMNISHARP, 'Omnisharp.exe' )
PATH_TO_ROSLYN_OMNISHARP, 'OmniSharp.exe' )
else:
PATH_TO_OMNISHARP_ROSLYN_BINARY = os.path.join(
PATH_TO_ROSLYN_OMNISHARP, 'Omnisharp' )
PATH_TO_ROSLYN_OMNISHARP, 'OmniSharp' )


def MonoRequired( roslyn_path: str ):
Expand Down

0 comments on commit 1305b9b

Please sign in to comment.