[xtext][tests] Fixed broken test on server

This change requires a new build of MWE since it relies on
a newly introduced property in the StandaloneSetup

Change-Id: I706b26401602613f138325c5ab1904e3c0e77339
This commit is contained in:
Sebastian Zarnekow 2013-03-12 10:05:41 +01:00
parent d63f46c4ab
commit 2b2f0c968e

View file

@ -45,7 +45,9 @@ public class XtextSerializerTest extends AbstractXtextTests {
@Override
public void setUp() throws Exception {
super.setUp();
new StandaloneSetup().setPlatformUri("../..");
StandaloneSetup standaloneSetup = new StandaloneSetup();
standaloneSetup.setIgnoreBrokenProjectFiles(true);
standaloneSetup.setPlatformUri("../..");
with(new XtextStandaloneSetup() {
@Override
public Injector createInjector() {