File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
tests/unit_tests/commands/android Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -291,9 +291,9 @@ export class AndroidSetup {
291291 stdio : 'pipe'
292292 } ) ;
293293
294- javaHome = stdout . toString ( ) ;
294+ javaHome = stdout . toString ( ) . trimEnd ( ) ;
295295
296- Logger . log ( `Auto-detected JAVA_HOME to be: ${ colors . green ( javaHome ) } ` ) ;
296+ Logger . log ( `${ colors . green ( symbols ( ) . ok ) } Auto-detected JAVA_HOME to be: ${ colors . green ( javaHome ) } ` ) ;
297297 // eslint-disable-next-line
298298 } catch { }
299299 }
Original file line number Diff line number Diff line change @@ -1052,7 +1052,7 @@ describe('test verifySetup', function() {
10521052
10531053 return [ ] ;
10541054 }
1055- } )
1055+ } ) ;
10561056
10571057 const { AndroidSetup} = require ( '../../../../src/commands/android/index' ) ;
10581058 const androidSetup = new AndroidSetup ( { appium : true } ) ;
@@ -1237,7 +1237,7 @@ describe('test verifySetup', function() {
12371237
12381238 return [ '31.0.1' ] ;
12391239 }
1240- } )
1240+ } ) ;
12411241
12421242 const { AndroidSetup} = require ( '../../../../src/commands/android/index' ) ;
12431243 const androidSetup = new AndroidSetup ( { appium : true } ) ;
You can’t perform that action at this time.
0 commit comments