aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_plugin_importing.py
diff options
context:
space:
mode:
authorLibravatarAgustin Henze <tin@sluc.org.ar>2013-11-20 16:58:53 -0300
committerLibravatarAgustin Henze <tin@sluc.org.ar>2013-11-20 16:58:53 -0300
commited33084d9bea84671449058af94a6e80dee714ba (patch)
tree8eee6e23cf8cac17bd31117a4839d3fd01a12249 /tests/test_plugin_importing.py
parent6fb711e4ada5214f5923a81106176a257d1550a3 (diff)
parentca94afc07df55cb7fc6fe3b4f3011877b7881195 (diff)
Merge tag 'upstream/6.2.1'
Upstream version 6.2.1
Diffstat (limited to 'tests/test_plugin_importing.py')
-rw-r--r--tests/test_plugin_importing.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/test_plugin_importing.py b/tests/test_plugin_importing.py
index 677dde8..5009f88 100644
--- a/tests/test_plugin_importing.py
+++ b/tests/test_plugin_importing.py
@@ -1,16 +1,16 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals, absolute_import
-from context import nikola # NOQA
+from .context import nikola # NOQA
import unittest
class ImportPluginsTest(unittest.TestCase):
def test_importing_command_import_wordpress(self):
- import nikola.plugins.command_import_wordpress # NOQA
+ import nikola.plugins.command.import_wordpress # NOQA
def test_importing_compile_rest(self):
- import nikola.plugins.compile_rest # NOQA
+ import nikola.plugins.compile.rest # NOQA
def test_importing_plugin_compile_markdown(self):
- import nikola.plugins.compile_markdown # NOQA
+ import nikola.plugins.compile.markdown # NOQA