File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
BrowserStackLocal Unit Tests Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ public void TestBinaryPathOnNoMoreFallback()
79
79
tunnel . fallbackPaths ( ) ;
80
80
Assert . Throws ( typeof ( Exception ) ,
81
81
new TestDelegate ( testFallbackException ) ,
82
- "No More Paths to try. Please specify a binary path in options ."
82
+ "Binary not found or failed to launch. Make sure that BrowserStackLocal.exe is not already running ."
83
83
) ;
84
84
}
85
85
[ TestMethod ]
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ public virtual void fallbackPaths()
61
61
{
62
62
if ( basePathsIndex >= basePaths . Length - 1 )
63
63
{
64
- throw new Exception ( "No More Paths to try. Please specify a binary path in options ." ) ;
64
+ throw new Exception ( "Binary not found or failed to launch. Make sure that BrowserStackLocal.exe is not already running ." ) ;
65
65
}
66
66
basePathsIndex ++ ;
67
67
binaryAbsolute = Path . Combine ( basePaths [ basePathsIndex ] , binaryName ) ;
You can’t perform that action at this time.
0 commit comments