Skip to content

Commit

Permalink
Fix fetching WebKitTestRunner version from saved identifier
Browse files Browse the repository at this point in the history
  • Loading branch information
gsnedders committed May 23, 2023
1 parent 2255458 commit 22be912
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/wpt/browser.py
Original file line number Diff line number Diff line change
Expand Up @@ -2022,7 +2022,7 @@ def find_webdriver(self, venv_path=None, channel="main"):

def version(self, binary=None, webdriver_binary=None):
dirname = os.path.dirname(binary)
identifier = os.path.join(dirname, "identifier")
identifier = os.path.join(dirname, "..", "identifier")
if not os.path.exists(identifier):
return None

Expand Down

0 comments on commit 22be912

Please sign in to comment.