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

Unified Diff: tests/standalone/io/mime_multipart_parser_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 | « tests/standalone/io/http_server_socket_test.dart ('k') | tests/standalone/io/process_run_output_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/io/mime_multipart_parser_test.dart
diff --git a/tests/standalone/io/mime_multipart_parser_test.dart b/tests/standalone/io/mime_multipart_parser_test.dart
index 32af07a9ae38f34523e86ab48f2864a109f2b63a..d349a4f62a43ff838f4683177b9ebd5cd2efcc37 100644
--- a/tests/standalone/io/mime_multipart_parser_test.dart
+++ b/tests/standalone/io/mime_multipart_parser_test.dart
@@ -42,7 +42,7 @@ void testParse(String message,
if (expectedParts[partCount] != null) {
List<int> expectedPart;
if (expectedParts[partCount] is String) {
- expectedPart = expectedParts[partCount].charCodes();
+ expectedPart = expectedParts[partCount].charCodes;
} else {
expectedPart = expectedParts[partCount];
}
@@ -78,7 +78,7 @@ void testParse(String message,
// Test parsing the data three times delivering the data in
// different chunks.
- List<int> data = message.charCodes();
+ List<int> data = message.charCodes;
testWrite(data);
testWrite(data, 10);
testWrite(data, 2);
« no previous file with comments | « tests/standalone/io/http_server_socket_test.dart ('k') | tests/standalone/io/process_run_output_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698