Skip to content

Commit 45f9829

Browse files
authored
Merge branch 'trunk' into pinned-browser-updates
2 parents 28ccdb1 + 39f8a9b commit 45f9829

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.skipped-tests

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,5 @@
5656
-//rb/spec/integration/selenium/webdriver:element-chrome
5757
-//rb/spec/integration/selenium/webdriver:element-chrome-bidi
5858
-//rb/spec/integration/selenium/webdriver:element-chrome-remote
59+
-//rb/spec/integration/selenium/webdriver:action_builder-firefox-beta-remote
5960
-//rust/tests/...

py/selenium/webdriver/firefox/webdriver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ def install_addon(self, path, temporary=False) -> str:
131131
path = os.path.normpath(path)
132132
# account for trailing slash that will be added by os.walk()
133133
path_root = len(path) + 1
134-
with zipfile.ZipFile(fp, "w", zipfile.ZIP_DEFLATED) as zipped:
134+
with zipfile.ZipFile(fp, "w", zipfile.ZIP_DEFLATED, strict_timestamps=False) as zipped:
135135
for base, _, files in os.walk(path):
136136
for fyle in files:
137137
filename = os.path.join(base, fyle)

0 commit comments

Comments
 (0)