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

Unified Diff: tests/standalone/io/http_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_basic_test.dart ('k') | tests/standalone/io/http_read_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/io/http_parser_test.dart
diff --git a/tests/standalone/io/http_parser_test.dart b/tests/standalone/io/http_parser_test.dart
index 2e18a883773de8530feedb7d729c309a6fe71e6b..456ffc2f44aed9b6d1300e55fc1dd6021aa6ae3d 100644
--- a/tests/standalone/io/http_parser_test.dart
+++ b/tests/standalone/io/http_parser_test.dart
@@ -110,7 +110,7 @@ class HttpParserTest {
// Test parsing the request three times delivering the data in
// different chunks.
- List<int> requestData = request.charCodes();
+ List<int> requestData = request.charCodes;
testWrite(requestData);
testWrite(requestData, 10);
testWrite(requestData, 1);
@@ -143,7 +143,7 @@ class HttpParserTest {
// Test parsing the request three times delivering the data in
// different chunks.
- List<int> requestData = request.charCodes();
+ List<int> requestData = request.charCodes;
testWrite(requestData);
testWrite(requestData, 10);
testWrite(requestData, 1);
@@ -259,7 +259,7 @@ class HttpParserTest {
// Test parsing the request three times delivering the data in
// different chunks.
- List<int> responseData = response.charCodes();
+ List<int> responseData = response.charCodes;
testWrite(responseData);
testWrite(responseData, 10);
testWrite(responseData, 1);
@@ -291,7 +291,7 @@ class HttpParserTest {
// Test parsing the request three times delivering the data in
// different chunks.
- List<int> responseData = response.charCodes();
+ List<int> responseData = response.charCodes;
testWrite(responseData);
testWrite(responseData, 10);
testWrite(responseData, 1);
« no previous file with comments | « tests/standalone/io/http_basic_test.dart ('k') | tests/standalone/io/http_read_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698