| Index: editor/tools/plugins/com.google.dart.tools.ui_test/src/com/google/dart/tools/ui/refactoring/ExtractUtilsTest.java
|
| diff --git a/editor/tools/plugins/com.google.dart.tools.ui_test/src/com/google/dart/tools/ui/refactoring/ExtractUtilsTest.java b/editor/tools/plugins/com.google.dart.tools.ui_test/src/com/google/dart/tools/ui/refactoring/ExtractUtilsTest.java
|
| index 378590a29d6b7afcc539d6e7c22d7e87939c3637..aa1581eb9cf56f7b7e98724b9def7501739a403d 100644
|
| --- a/editor/tools/plugins/com.google.dart.tools.ui_test/src/com/google/dart/tools/ui/refactoring/ExtractUtilsTest.java
|
| +++ b/editor/tools/plugins/com.google.dart.tools.ui_test/src/com/google/dart/tools/ui/refactoring/ExtractUtilsTest.java
|
| @@ -348,7 +348,7 @@ public final class ExtractUtilsTest extends AbstractDartTest {
|
| }
|
|
|
| public void test_getType_typedLiteral_Map_noTypeArgument() throws Exception {
|
| - assertTypeSimple("Map<String, Dynamic>", "const {'a' : 1, 'b' : 2, 'c' : 3}");
|
| + assertTypeSimple("Map<String, dynamic>", "const {'a' : 1, 'b' : 2, 'c' : 3}");
|
| }
|
|
|
| public void test_getType_typedLiteral_Map_withTypeArgument() throws Exception {
|
| @@ -399,7 +399,7 @@ public final class ExtractUtilsTest extends AbstractDartTest {
|
| }
|
|
|
| public void test_getType_unqualifiedInvocation_Map_withTypeArgument2() throws Exception {
|
| - assert_getType_unqualifiedInvocation("Map<int, Dynamic>");
|
| + assert_getType_unqualifiedInvocation("Map<int, dynamic>");
|
| }
|
|
|
| public void test_getType_unqualifiedInvocation_String() throws Exception {
|
|
|