| Index: editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/internal/model/DartLibraryImplTest.java
|
| diff --git a/editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/internal/model/DartLibraryImplTest.java b/editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/internal/model/DartLibraryImplTest.java
|
| index 6b7967ca49b44b45509021b6a6538d1b1f6e2ac0..fef2323e12a02d5687dcf32e0db7329ff7642a6a 100644
|
| --- a/editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/internal/model/DartLibraryImplTest.java
|
| +++ b/editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/internal/model/DartLibraryImplTest.java
|
| @@ -13,8 +13,6 @@
|
| */
|
| package com.google.dart.tools.core.internal.model;
|
|
|
| -import static org.fest.assertions.Assertions.assertThat;
|
| -
|
| import com.google.common.base.Joiner;
|
| import com.google.common.io.Files;
|
| import com.google.common.io.InputSupplier;
|
| @@ -44,6 +42,8 @@ import org.eclipse.core.runtime.IProgressMonitor;
|
| import org.eclipse.core.runtime.NullProgressMonitor;
|
| import org.eclipse.core.runtime.Path;
|
|
|
| +import static org.fest.assertions.Assertions.assertThat;
|
| +
|
| import java.io.ByteArrayInputStream;
|
| import java.io.File;
|
| import java.io.IOException;
|
| @@ -68,6 +68,7 @@ public class DartLibraryImplTest extends TestCase {
|
| }
|
| }, file);
|
| file.deleteOnExit();
|
| + TestUtilities.processAllDeltaChanges();
|
| }
|
|
|
| private static File getTempDir() throws IOException {
|
| @@ -1161,6 +1162,7 @@ public class DartLibraryImplTest extends TestCase {
|
| return (DartLibraryImpl) elem;
|
| }
|
| }
|
| + TestUtilities.processAllDeltaChanges();
|
| return (DartLibraryImpl) DartCore.openLibrary(libFile, new NullProgressMonitor());
|
| }
|
|
|
|
|