Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(561)

Unified Diff: utils/tests/string_encoding/utf16_test.dart

Issue 11263040: Make String.charCodes a getter. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Update status files with co19 issue number. Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « utils/tests/string_encoding/benchmark_runner.dart ('k') | utils/tests/string_encoding/utf32_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/tests/string_encoding/utf16_test.dart
diff --git a/utils/tests/string_encoding/utf16_test.dart b/utils/tests/string_encoding/utf16_test.dart
index 87c7ddb8d056ef19a7a2edfdd7aebf992db2c585..70d1983f12bc32057837c0480e34c9990c0ff427 100755
--- a/utils/tests/string_encoding/utf16_test.dart
+++ b/utils/tests/string_encoding/utf16_test.dart
@@ -118,7 +118,7 @@ class Utf16Tests extends TestClass {
IterableUtf16Decoder koreanDecoder =
decodeUtf16AsIterable(testKoreanCharSubsetUtf16beBom);
// get the first character
- Expect.equals(testKoreanCharSubset.charCodes()[0],
+ Expect.equals(testKoreanCharSubset.charCodes[0],
koreanDecoder.iterator().next());
// get the whole translation using the Iterable interface
Expect.stringEquals(testKoreanCharSubset,
« no previous file with comments | « utils/tests/string_encoding/benchmark_runner.dart ('k') | utils/tests/string_encoding/utf32_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698