aboutsummaryrefslogtreecommitdiffstats
path: root/library/python/testing/yatest_common/yatest/common/errors.py
diff options
context:
space:
mode:
authorprettyboy <prettyboy@yandex-team.com>2022-09-25 13:06:29 +0300
committerprettyboy <prettyboy@yandex-team.com>2022-09-25 13:06:29 +0300
commita56f9bf1dd89a3bf9b12b3075311c0c93e84fbb2 (patch)
tree1471279703beb18e586d8aad8d1fabe5ded1182b /library/python/testing/yatest_common/yatest/common/errors.py
parente14c5ad0a3b4044dab6d6c9aad1d5d76360494a7 (diff)
downloadydb-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.py2
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")