aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/testextension/main.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/testextension/main.py b/tests/testextension/main.py
index a1773d8..0c3f988 100644
--- a/tests/testextension/main.py
+++ b/tests/testextension/main.py
@@ -101,13 +101,13 @@ class TestModules(unittest.TestCase):
self.assertTrue("Utils" in dir(QtCreator), msg="Utils module missing.")
self.assertTrue("ExtensionSystem" in dir(QtCreator), msg="ExtensionSystem module missing.")
- def text_exists_optional(self):
+ def test_exists_optional(self):
"""
These tests may fail, even if everything is setup correctly, depending on
which QtCreator plugins are enabled.
"""
try:
- from PythonExtension.QtCreator import PluginInstance
+ from PythonExtension import PluginInstance
from PythonExtension.QtCreator import ProjectExplorer
from PythonExtension.QtCreator import TextEditor
except ImportError: