Skip to content

Commit c70d4f2

Browse files
joaodinissfclaude
andcommitted
fix: remove org.eclipse.xtend from test project required bundles
The test project created by PluginTestProjectManager listed org.eclipse.xtend as a required bundle. After migrating away from the Xpand library, this bundle is no longer in the test runtime, causing PDE to produce an unresolved bundle error marker — the 5th marker that made CheckQuickfixTest.testBulkApplyingQuickfix fail consistently with expected:<4> but was:<5>. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent ba688b9 commit c70d4f2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/PluginTestProjectManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public class PluginTestProjectManager extends XtextTestProjectManager {
4949

5050
// org.eclipse.osgi needed for NLS
5151
// org.apache.logging.log4j needed for logging in generated StandaloneSetup
52-
private static final List<String> REQUIRED_BUNDLES = newArrayList("org.eclipse.xtext.xbase.lib", "org.eclipse.xtend.lib", "org.eclipse.emf.ecore", "com.avaloq.tools.ddk.check.core", "com.avaloq.tools.ddk.check.runtime.core", "com.avaloq.tools.ddk.check.lib", "com.avaloq.tools.ddk.xtext", "org.eclipse.xtext", "org.eclipse.osgi", "org.eclipse.xtend", "org.eclipse.core.runtime", "org.eclipse.xtext.xbase", "org.apache.logging.log4j.api");
52+
private static final List<String> REQUIRED_BUNDLES = newArrayList("org.eclipse.xtext.xbase.lib", "org.eclipse.xtend.lib", "org.eclipse.emf.ecore", "com.avaloq.tools.ddk.check.core", "com.avaloq.tools.ddk.check.runtime.core", "com.avaloq.tools.ddk.check.lib", "com.avaloq.tools.ddk.xtext", "org.eclipse.xtext", "org.eclipse.osgi", "org.eclipse.core.runtime", "org.eclipse.xtext.xbase", "org.apache.logging.log4j.api");
5353

5454
private final Injector injector;
5555

0 commit comments

Comments
 (0)