Skip to content

Commit

Permalink
Fix bug locating the Chrome binary (#31681)
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielRyanSmith authored Nov 25, 2021
1 parent 2865f72 commit 52dca51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/wpt/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ class Chrome(BrowserSetup):
def setup_kwargs(self, kwargs):
browser_channel = kwargs["browser_channel"]
if kwargs["binary"] is None:
binary = self.browser.find_binary(channel=browser_channel)
binary = self.browser.find_binary(venv_path=self.venv.path, channel=browser_channel)
if binary:
kwargs["binary"] = binary
else:
Expand Down

0 comments on commit 52dca51

Please sign in to comment.