Skip to content

Commit 788a205

Browse files
authored
Merge pull request #1652 from puremourning/fix-ci
Fix ci
2 parents 2e02023 + 6c9c089 commit 788a205

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

run_tests.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -354,8 +354,9 @@ def SetUpJavaCompleter():
354354
CACHE = p.join( LOMBOR_DIR, 'cache' )
355355

356356
jar_name = f'lombok-{ LOMBOK_VERSION }.jar'
357-
url = f'https://projectlombok.org/downloads/{ jar_name }'
358-
357+
url = (
358+
f'https://github.com/ycm-core/llvm/releases/download/14.0.5/{ jar_name }'
359+
)
359360
file_name = p.join( CACHE, jar_name )
360361

361362
if not p.exists( CACHE ):

ycmd/responses.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,8 @@ def BuildDisplayMessageResponse( text ):
9696

9797

9898
def BuildDetailedInfoResponse( text ):
99-
""" Returns the response object for displaying detailed information about types
100-
and usage, such as within a preview window"""
99+
""" Returns the response object for displaying detailed information about
100+
types and usage, such as within a preview window"""
101101
return {
102102
'detailed_info': text
103103
}

0 commit comments

Comments
 (0)