Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Pazderski2019-09-20 10:23:47 +0000
committerPaul Pazderski2019-09-20 13:25:36 +0000
commit57c7426cca7f9fc63bd097017ee925b42dc1f045 (patch)
treea1c47500dbc3fa6c2fb413e5d82d5b9f5f554493
parent91e2727b9ce67b601ae9f5a455c5b7c83813be6b (diff)
downloadeclipse.platform.text-57c7426cca7f9fc63bd097017ee925b42dc1f045.tar.gz
eclipse.platform.text-57c7426cca7f9fc63bd097017ee925b42dc1f045.tar.xz
eclipse.platform.text-57c7426cca7f9fc63bd097017ee925b42dc1f045.zip
Bug 544448 - Genericeditor tests: wrong classname in plugin.xml
Referenced class 'org.eclipse.ui.genericeditor.tests.contributions.QuickAssistProcessor' in attribute 'class' is not on the plug-in classpath. Change-Id: I36b7bbed5381297ee059ee867490d00da0afd463 Signed-off-by: Paul Pazderski <paul-eclipse@ppazderski.de>
-rw-r--r--org.eclipse.ui.genericeditor.tests/plugin.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.ui.genericeditor.tests/plugin.xml b/org.eclipse.ui.genericeditor.tests/plugin.xml
index b029e501c0f..bbd0e8b1dfb 100644
--- a/org.eclipse.ui.genericeditor.tests/plugin.xml
+++ b/org.eclipse.ui.genericeditor.tests/plugin.xml
@@ -282,7 +282,7 @@
<extension
point="org.eclipse.ui.genericeditor.quickAssistProcessors">
<quickAssistProcessor
- class="org.eclipse.ui.genericeditor.tests.contributions.QuickAssistProcessor"
+ class="org.eclipse.ui.genericeditor.tests.contributions.MockQuickAssistProcessor"
contentType="org.eclipse.ui.genericeditor.tests.content-type">
</quickAssistProcessor>
</extension>

Back to the top