File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ function LocalBinary(){
1919 return 'https://s3.amazonaws.com/bstack-local-prod/BrowserStackLocal.exe' ;
2020 } else {
2121 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' ;
2323 } else {
2424 if ( this . is64bits )
2525 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 () {
354354 it ( 'should return download path of alpine linux binary' , function ( ) {
355355 sandBox . stub ( localBinary , 'hostOS' , 'linux' ) ;
356356 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' ) ;
358358 } ) ;
359359
360360 afterEach ( function ( done ) {
You can’t perform that action at this time.
0 commit comments