Skip to content

Commit

Permalink
typo in error message (#11166)
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
kkotenko authored Oct 25, 2022
1 parent 052a5cb commit 851cb0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def driver(request):
# skip tests if not available on the platform
_platform = platform.system()
if driver_class == "Safari" and _platform != "Darwin":
pytest.skip("Safari tests can only rn on an Apple OS")
pytest.skip("Safari tests can only run on an Apple OS")
if (driver_class == "Ie") and _platform != "Windows":
pytest.skip("IE and EdgeHTML Tests can only run on Windows")
if "WebKit" in driver_class and _platform != "Linux":
Expand Down

0 comments on commit 851cb0d

Please sign in to comment.