Remove superfluous property declaration 13/72513/1
authorVincent Danno <vincent.danno@orange.com>
Wed, 12 May 2021 19:31:48 +0000 (21:31 +0200)
committerVincent Danno <vincent.danno@orange.com>
Wed, 12 May 2021 19:40:10 +0000 (21:40 +0200)
It is inherited.

Signed-off-by: Vincent Danno <vincent.danno@orange.com>
Change-Id: Ic68172dfb93f03cc62cf4944b82de8bc1e37b097

xtesting/core/behaveframework.py
xtesting/core/robotframework.py

index dacda27..dba556f 100644 (file)
@@ -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)
index fa04454..a973e9a 100644 (file)
@@ -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)