summaryrefslogtreecommitdiff
path: root/unittests/framework/skip.py
diff options
context:
space:
mode:
Diffstat (limited to 'unittests/framework/skip.py')
-rw-r--r--unittests/framework/skip.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/unittests/framework/skip.py b/unittests/framework/skip.py
index 4a3bcf3a9..de8e896b8 100644
--- a/unittests/framework/skip.py
+++ b/unittests/framework/skip.py
@@ -33,9 +33,9 @@ import pytest
# pylint: disable=invalid-name
posix = pytest.mark.skipif(
- os.name != 'posix', reason="Test is only relavent on posix systems.")
+ os.name != 'posix', reason="Test is only relevant on posix systems.")
windows = pytest.mark.skipif(
- os.name != 'nt', reason="Test is only relavent on Microsoft Windows.")
+ os.name != 'nt', reason="Test is only relevant on Microsoft Windows.")
linux = pytest.mark.skipif(
not sys.platform.startswith('linux'),
- reason="Test is only relavent on Linux OSes.")
+ reason="Test is only relevant on Linux OSes.")