Skip to content

Commit cee5525

Browse files
committed
[py] Fix duplicate test name and remove unused import
1 parent 2674d49 commit cee5525

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

py/test/selenium/webdriver/common/selenium_manager_tests.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
# KIND, either express or implied. See the License for the
1515
# specific language governing permissions and limitations
1616
# under the License.
17+
1718
import json
18-
import platform
1919
import sys
2020
from pathlib import Path
2121
from unittest import mock
@@ -78,7 +78,7 @@ def test_uses_linux(monkeypatch):
7878
assert binary == project_root.joinpath("selenium/webdriver/common/linux/selenium-manager")
7979

8080

81-
def test_uses_linux(monkeypatch):
81+
def test_uses_linux_arm(monkeypatch):
8282
monkeypatch.setattr(sys, "platform", "linux")
8383
monkeypatch.setattr("platform.machine", lambda: "arm64")
8484

0 commit comments

Comments
 (0)