From 896a7da502bf8ec48e84f1aa6ddf8ed6fac06e7b Mon Sep 17 00:00:00 2001 From: Cleber Rosa Date: Wed, 27 Jan 2016 12:51:43 -0200 Subject: [PATCH] SimpleTest: with the implementation of filename, basedir is unnecessary The implementation of basedir from Avocado Test is also sufficient for SimpleTest now that the `filename` property is implemented. Signed-off-by: Cleber Rosa --- avocado/core/test.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/avocado/core/test.py b/avocado/core/test.py index 32f4b340..3d021d4a 100644 --- a/avocado/core/test.py +++ b/avocado/core/test.py @@ -585,13 +585,6 @@ class SimpleTest(Test): base_logdir=base_logdir, tag=tag, job=job) self.path = name - @property - def datadir(self): - """ - Returns the path to the directory that contains test data files - """ - return self.name + '.data' - @property def filename(self): """ -- GitLab