diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2012-01-14 16:07:47 +0100 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2012-01-14 16:07:47 +0100 |
commit | a0615c500c8bce03aaf89156a5f5e5e06873587c (patch) | |
tree | ab58a2da62eb38c6299092b259f6002598db4eb4 | |
parent | captcha and attachments for plugin tester (diff) | |
download | pyload-a0615c500c8bce03aaf89156a5f5e5e06873587c.tar.xz |
fixed attachment file path
-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 e0ce8f354..db01a2d06 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 = "tests.%s.%s" % (cls.__name__, cls.__name__) + name = "%s.%s" % (cls.__name__, cls.__name__) for f in glob(join(name, "debug_*")): remove(f) # Copy debug report to attachment dir for jenkins @classmethod def tearDownClass(cls): - name = "tests.%s.%s" % (cls.__name__, cls.__name__) + name = "%s.%s" % (cls.__name__, cls.__name__) if not exists(name): makedirs(name) for f in glob("debug_*"): move(f, join(name, f)) |