summaryrefslogtreecommitdiffstats
path: root/tests/helper/PluginTester.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/helper/PluginTester.py')
-rw-r--r--tests/helper/PluginTester.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/helper/PluginTester.py b/tests/helper/PluginTester.py
index db01a2d06..b70c0d061 100644
--- a/tests/helper/PluginTester.py
+++ b/tests/helper/PluginTester.py
@@ -128,14 +128,14 @@ class PluginTester(TestCase):
@classmethod
def setUpClass(cls):
cls.core = Core()
- name = "%s.%s" % (cls.__name__, cls.__name__)
+ name = "%s.%s" % (cls.__module__, cls.__name__)
for f in glob(join(name, "debug_*")):
remove(f)
# Copy debug report to attachment dir for jenkins
@classmethod
def tearDownClass(cls):
- name = "%s.%s" % (cls.__name__, cls.__name__)
+ name = "%s.%s" % (cls.__module__, cls.__name__)
if not exists(name): makedirs(name)
for f in glob("debug_*"):
move(f, join(name, f))