diff options
author | prettyboy <prettyboy@yandex-team.com> | 2022-09-25 13:06:29 +0300 |
---|---|---|
committer | prettyboy <prettyboy@yandex-team.com> | 2022-09-25 13:06:29 +0300 |
commit | a56f9bf1dd89a3bf9b12b3075311c0c93e84fbb2 (patch) | |
tree | 1471279703beb18e586d8aad8d1fabe5ded1182b /library/python/testing/yatest_common/yatest/common/errors.py | |
parent | e14c5ad0a3b4044dab6d6c9aad1d5d76360494a7 (diff) | |
download | ydb-a56f9bf1dd89a3bf9b12b3075311c0c93e84fbb2.tar.gz |
[library/python/testing/yatest_common] Relaxed runtime methods for non-standalone runs
Diffstat (limited to 'library/python/testing/yatest_common/yatest/common/errors.py')
-rw-r--r-- | library/python/testing/yatest_common/yatest/common/errors.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/library/python/testing/yatest_common/yatest/common/errors.py b/library/python/testing/yatest_common/yatest/common/errors.py index 8c038fc381..d7c444465b 100644 --- a/library/python/testing/yatest_common/yatest/common/errors.py +++ b/library/python/testing/yatest_common/yatest/common/errors.py @@ -3,7 +3,6 @@ import sys class RestartTestException(Exception): - def __init__(self, *args, **kwargs): super(RestartTestException, self).__init__(*args, **kwargs) sys.stderr.write("##restart-test##\n") @@ -12,7 +11,6 @@ class RestartTestException(Exception): class InfrastructureException(Exception): - def __init__(self, *args, **kwargs): super(InfrastructureException, self).__init__(*args, **kwargs) sys.stderr.write("##infrastructure-error##\n") |