Skip to content

Commit f193c13

Browse files
committed
Update BrowserManager.cs
1 parent 8c0557c commit f193c13

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Shared/BrowserTesting/src/BrowserManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ async Task InitializeCore()
4848
{
4949
// Work around weird driverExecutable lookup logic
5050
var helixDirectory = Environment.GetEnvironmentVariable("HELIX_WORKITEM_ROOT");
51-
var driverPath = string.isNullOrEmpty(helixDirectory) ? null : Path.Combine(helixDirectory, "runtests.sh");
51+
var driverPath = string.IsNullOrEmpty(helixDirectory) ? null : Path.Combine(helixDirectory, "runtests.sh");
5252
Playwright = await PlaywrightSharp.Playwright.CreateAsync(_loggerFactory, driverExecutablePath: driverPath /*, debug: "pw:api"*/);
5353
foreach (var (browserName, options) in _browserManagerConfiguration.BrowserOptions)
5454
{

0 commit comments

Comments
 (0)