@@ -10,7 +10,7 @@ public class BinaryServiceTests : BinaryService
1010        [ Fact ] 
1111        public  void  DownloadZipResultNotEmpty ( ) 
1212        { 
13-             var   url  =  "https://chromedriver.storage.googleapis.com/2.25 /chromedriver_win32.zip" ; 
13+             const   string   url  =  "https://chromedriver.storage.googleapis.com/2.27 /chromedriver_win32.zip" ; 
1414            var  destination  =  FileHelper . GetZipDestination ( url ) ; 
1515            var  result  =  DownloadZip ( url ,  destination ) ; 
1616            Assert . NotEmpty ( result ) ; 
@@ -20,7 +20,7 @@ public void DownloadZipResultNotEmpty()
2020        [ Fact ] 
2121        public  void  UnZipResultNotEmpty ( ) 
2222        { 
23-             var  zipPath  =  Path . Combine ( Directory . GetCurrentDirectory ( ) ,  @ "Assets\ unzipable.zip") ; 
23+             var  zipPath  =  Path . Combine ( Directory . GetCurrentDirectory ( ) ,  "Assets"  ,   " unzipable.zip") ; 
2424            var  destination  =  FileHelper . GetBinDestination ( "Files" ,  "2.0.0" ,  Architecture . X32 ,  "file.txt" ) ; 
2525            FileHelper . CreateDestinationDirectory ( destination ) ; 
2626            var  result  =  UnZip ( zipPath ,  destination ,  "file.txt" ) ; 
@@ -31,7 +31,8 @@ public void UnZipResultNotEmpty()
3131        [ Fact ] 
3232        public  void  RemoveZipTargetMissing ( ) 
3333        { 
34-             var  zipPath  =  Path . Combine ( Directory . GetCurrentDirectory ( ) ,  @"Assets\removable.zip" ) ; 
34+             var  zipPath  =  Path . Combine ( Directory . GetCurrentDirectory ( ) ,  "Assets" ,  "removable.zip" ) ; 
35+             Assert . True ( File . Exists ( zipPath ) ) ; 
3536            RemoveZip ( zipPath ) ; 
3637            Assert . False ( File . Exists ( zipPath ) ) ; 
3738        } 
0 commit comments