diff options
Diffstat (limited to 'tests/plugin_tests.py')
-rw-r--r-- | tests/plugin_tests.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/plugin_tests.py b/tests/plugin_tests.py index b8760429..6522fe14 100644 --- a/tests/plugin_tests.py +++ b/tests/plugin_tests.py @@ -81,6 +81,7 @@ class ForbiddenMockPlugin(Plugin): plugin_name = "forbidden" def setup(self): + self.add_copy_spec("tests") self.add_forbidden_path("tests") @@ -235,7 +236,7 @@ class PluginTests(unittest.TestCase): }) p.archive = MockArchive() p.setup() - p._do_copy_path("tests") + p.collect() self.assertEquals(p.archive.m, {}) |