Skip to content

Commit

Permalink
Merge pull request #3283 from mehmet-karaman/disable_DirtyStateEditor…
Browse files Browse the repository at this point in the history
…SupportIntegrationTest_for_macos

Disable DirtyStateEditorSupportIntegrationTest.testModifyFileInExternEditor() for mac operating system.
  • Loading branch information
LorenzoBettini authored Dec 16, 2024
2 parents fc87d52 + 6459311 commit 4fb59cc
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
*/
package org.eclipse.xtext.ui.tests.editor;

import static org.junit.Assume.*;

import java.io.File;
import java.io.FileWriter;
import java.util.ArrayList;
Expand Down Expand Up @@ -130,6 +132,9 @@ public void testUndoRedo() throws Exception {
* @see https://github.com/eclipse-xtext/xtext/issues/2385
*/
@Test public void testModifyFileInExternEditor() throws Exception {
// This test is flaky on mac operating systems maven build.
assumeFalse(System.getProperty("os.name").startsWith("Mac"));

IXtextDocument document = editor.getDocument();

Display.getDefault().readAndDispatch();
Expand Down

0 comments on commit 4fb59cc

Please sign in to comment.