Skip to content

Commit

Permalink
Disable DirtyStateEditorSupportIntegrationTest.testModifyFileInExtern…
Browse files Browse the repository at this point in the history
…Editor()

test for Mac operating system
  • Loading branch information
mehmet-karaman committed Dec 8, 2024
1 parent dec4226 commit 6459311
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 6459311

Please sign in to comment.