mirror of
https://github.com/sigmasternchen/xtext-core
synced 2025-03-16 00:38:56 +00:00
[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:
parent
d63f46c4ab
commit
2b2f0c968e
1 changed files with 3 additions and 1 deletions
|
@ -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() {
|
||||
|
|
Loading…
Reference in a new issue