| Index: pkg/analyzer/test/src/context/builder_test.dart
|
| diff --git a/pkg/analyzer/test/src/context/builder_test.dart b/pkg/analyzer/test/src/context/builder_test.dart
|
| index 4e54ff77157ce535f5a7fe20b9ddef493dfa8107..e43d56f3122130c66c1b3ec470a7ded1eb056152 100644
|
| --- a/pkg/analyzer/test/src/context/builder_test.dart
|
| +++ b/pkg/analyzer/test/src/context/builder_test.dart
|
| @@ -633,7 +633,7 @@ analyzer:
|
| class EmbedderYamlLocatorTest extends EmbedderRelatedTest {
|
| void test_empty() {
|
| EmbedderYamlLocator locator = new EmbedderYamlLocator({
|
| - 'fox': [pathTranslator.getResource('/empty')]
|
| + 'fox': [pathTranslator.getResource(emptyPath)]
|
| });
|
| expect(locator.embedderYamls, hasLength(0));
|
| }
|
| @@ -646,7 +646,7 @@ class EmbedderYamlLocatorTest extends EmbedderRelatedTest {
|
|
|
| void test_valid() {
|
| EmbedderYamlLocator locator = new EmbedderYamlLocator({
|
| - 'fox': [pathTranslator.getResource('/tmp')]
|
| + 'fox': [pathTranslator.getResource(foxLib)]
|
| });
|
| expect(locator.embedderYamls, hasLength(1));
|
| }
|
|
|