We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2674d49 commit cee5525Copy full SHA for cee5525
py/test/selenium/webdriver/common/selenium_manager_tests.py
@@ -14,8 +14,8 @@
14
# KIND, either express or implied. See the License for the
15
# specific language governing permissions and limitations
16
# under the License.
17
+
18
import json
-import platform
19
import sys
20
from pathlib import Path
21
from unittest import mock
@@ -78,7 +78,7 @@ def test_uses_linux(monkeypatch):
78
assert binary == project_root.joinpath("selenium/webdriver/common/linux/selenium-manager")
79
80
81
-def test_uses_linux(monkeypatch):
+def test_uses_linux_arm(monkeypatch):
82
monkeypatch.setattr(sys, "platform", "linux")
83
monkeypatch.setattr("platform.machine", lambda: "arm64")
84
0 commit comments