diff options
author | 2012-01-15 15:55:19 +0100 | |
---|---|---|
committer | 2012-01-15 15:55:19 +0100 | |
commit | 26227cfe53f8fd4bc1631d8e1b35031f589682dc (patch) | |
tree | d468ab14d8179c9a097c3d388ce29b8ab5747475 /tests/helper/PluginTester.py | |
parent | plugin tester links (diff) | |
download | pyload-26227cfe53f8fd4bc1631d8e1b35031f589682dc.tar.xz |
backend + api test case, nicer format for plugin tester
Diffstat (limited to 'tests/helper/PluginTester.py')
-rw-r--r-- | tests/helper/PluginTester.py | 4 |
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)) |