File tree 2 files changed +2
-2
lines changed 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ function LocalBinary(){
19
19
return 'https://s3.amazonaws.com/bstack-local-prod/BrowserStackLocal.exe' ;
20
20
} else {
21
21
if ( this . isAlpine ( ) ) {
22
- return 'https://s3.amazonaws.com/ bstack-local-prod/BrowserStackLocal-alpine' ;
22
+ return 'https://bstack-local-prod.s3.amazonaws.com /BrowserStackLocal-alpine' ;
23
23
} else {
24
24
if ( this . is64bits )
25
25
return 'https://s3.amazonaws.com/bstack-local-prod/BrowserStackLocal-linux-x64' ;
Original file line number Diff line number Diff line change @@ -354,7 +354,7 @@ describe('LocalBinary', function () {
354
354
it ( 'should return download path of alpine linux binary' , function ( ) {
355
355
sandBox . stub ( localBinary , 'hostOS' , 'linux' ) ;
356
356
localBinary . isAlpine = sandBox . stub ( localBinary , 'isAlpine' ) . returns ( true ) ;
357
- expect ( localBinary . getDownloadPath ( ) ) . to . equal ( 'https://s3.amazonaws.com/ bstack-local-prod/BrowserStackLocal-alpine' ) ;
357
+ expect ( localBinary . getDownloadPath ( ) ) . to . equal ( 'https://bstack-local-prod.s3.amazonaws.com /BrowserStackLocal-alpine' ) ;
358
358
} ) ;
359
359
360
360
afterEach ( function ( done ) {
You can’t perform that action at this time.
0 commit comments