From 403e6af2029eec205b2c64fd48761a5596ed4e92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Doktor?= Date: Tue, 21 Feb 2017 13:47:10 +0100 Subject: [PATCH] Test: Remove unused variables MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The `debugdir` and `resultsdir` are not used in Avocado. They were inherited from Avocado-vt, but there is no point in defining them in Avocado itself as Avocado-vt creates them anyway. Signed-off-by: Lukáš Doktor --- avocado/core/test.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/avocado/core/test.py b/avocado/core/test.py index 48880e03..16a4251a 100644 --- a/avocado/core/test.py +++ b/avocado/core/test.py @@ -233,8 +233,6 @@ class Test(unittest.TestCase): self.log.info('START %s', self.name) - self.debugdir = None - self.resultsdir = None self.status = None self.fail_reason = None self.fail_class = None -- GitLab