diff options
Diffstat (limited to 'library/python/testing')
| -rw-r--r-- | library/python/testing/yatest_common/yatest/common/runtime.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/python/testing/yatest_common/yatest/common/runtime.py b/library/python/testing/yatest_common/yatest/common/runtime.py index 4372787bb68..4f67f824328 100644 --- a/library/python/testing/yatest_common/yatest/common/runtime.py +++ b/library/python/testing/yatest_common/yatest/common/runtime.py @@ -53,7 +53,7 @@ def _norm_path(path): return None assert isinstance(path, six.string_types) if "\\" in path: - raise AssertionError("path {} contains Windows seprators \\ - replace them with '/'".format(path)) + raise AssertionError("path {} contains Windows separators \\ - replace them with '/'".format(path)) return os.path.normpath(path) |
