| Index: editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/internal/model/testsource/CoreRuntimeTypesTest.dart
|
| diff --git a/editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/internal/model/testsource/CoreRuntimeTypesTest.dart b/editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/internal/model/testsource/CoreRuntimeTypesTest.dart
|
| index 3dd00f33e9086641a3cd4f6828607beaacedfe4f..ea8fe7b87959ee5d9bff045fc5eb657918fb0a86 100644
|
| --- a/editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/internal/model/testsource/CoreRuntimeTypesTest.dart
|
| +++ b/editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/internal/model/testsource/CoreRuntimeTypesTest.dart
|
| @@ -147,7 +147,7 @@ class CoreRuntimeTypesTest {
|
| static testStringOperators() {
|
| var s = "abcdef";
|
| assertEquals(s, "abcdef");
|
| - assertEquals(s.charCodeAt(0), 97);
|
| + assertEquals(s.codeUnitAt(0), 97);
|
| assertEquals(s[0], 'a');
|
| assertEquals(s.length, 6);
|
| assertTypeError(function() { s[null]; });
|
|
|