diff options
author | Vincent Danno <vincent.danno@orange.com> | 2021-05-12 21:31:48 +0200 |
---|---|---|
committer | Vincent Danno <vincent.danno@orange.com> | 2021-05-12 21:40:10 +0200 |
commit | 72c14ecdcf502cfeba72901e59b18272433ae52a (patch) | |
tree | 36e1ed3f591bdbf24ad6983b743c5a3ee04b3efa | |
parent | e0d3c56f24dd2673be6973d01ed90b05515572c6 (diff) |
Remove superfluous property declaration
It is inherited.
Signed-off-by: Vincent Danno <vincent.danno@orange.com>
Change-Id: Ic68172dfb93f03cc62cf4944b82de8bc1e37b097
-rw-r--r-- | xtesting/core/behaveframework.py | 1 | ||||
-rw-r--r-- | xtesting/core/robotframework.py | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/xtesting/core/behaveframework.py b/xtesting/core/behaveframework.py index dacda27d..dba556f4 100644 --- a/xtesting/core/behaveframework.py +++ b/xtesting/core/behaveframework.py @@ -30,7 +30,6 @@ class BehaveFramework(testcase.TestCase): # pylint: disable=too-many-instance-attributes __logger = logging.getLogger(__name__) - dir_results = "/var/lib/xtesting/results" def __init__(self, **kwargs): super(BehaveFramework, self).__init__(**kwargs) diff --git a/xtesting/core/robotframework.py b/xtesting/core/robotframework.py index fa04454e..a973e9a2 100644 --- a/xtesting/core/robotframework.py +++ b/xtesting/core/robotframework.py @@ -53,7 +53,6 @@ class RobotFramework(testcase.TestCase): """RobotFramework runner.""" __logger = logging.getLogger(__name__) - dir_results = "/var/lib/xtesting/results" def __init__(self, **kwargs): super(RobotFramework, self).__init__(**kwargs) |