| Index: editor/tools/plugins/com.google.dart.tools.ui_test/src/com/google/dart/tools/ui/refactoring/AbstractDartTest.java
|
| diff --git a/editor/tools/plugins/com.google.dart.tools.ui_test/src/com/google/dart/tools/ui/refactoring/AbstractDartTest.java b/editor/tools/plugins/com.google.dart.tools.ui_test/src/com/google/dart/tools/ui/refactoring/AbstractDartTest.java
|
| index 984c11fb5d83c987cc74b354ad63600eaac67543..68c9064c7607bf60989682adda5c4b22f82bcc85 100644
|
| --- a/editor/tools/plugins/com.google.dart.tools.ui_test/src/com/google/dart/tools/ui/refactoring/AbstractDartTest.java
|
| +++ b/editor/tools/plugins/com.google.dart.tools.ui_test/src/com/google/dart/tools/ui/refactoring/AbstractDartTest.java
|
| @@ -20,6 +20,7 @@ import com.google.dart.compiler.ast.DartNode;
|
| import com.google.dart.tools.core.model.CompilationUnit;
|
| import com.google.dart.tools.core.model.DartElement;
|
| import com.google.dart.tools.core.test.util.TestProject;
|
| +import com.google.dart.tools.core.test.util.TestUtilities;
|
|
|
| import junit.framework.TestCase;
|
|
|
| @@ -83,6 +84,7 @@ public abstract class AbstractDartTest extends TestCase {
|
| * Asserts that {@link CompilationUnit} has expected content.
|
| */
|
| protected static void assertUnitContent(CompilationUnit unit, String... lines) throws Exception {
|
| + TestUtilities.processAllDeltaChanges();
|
| assertEquals(makeSource(lines), unit.getSource());
|
| }
|
|
|
|
|