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

Unified Diff: tests/standalone/io/http_headers_test.dart

Issue 10938010: Switch from interfaces to abstract classes in dart:io. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 3 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
Index: tests/standalone/io/http_headers_test.dart
diff --git a/tests/standalone/io/http_headers_test.dart b/tests/standalone/io/http_headers_test.dart
index 2219d0f87bee24db924259ba853c27a74c4b15a5..c1b7902e7507e6030ae16ffbbb32772f003e6fe4 100644
--- a/tests/standalone/io/http_headers_test.dart
+++ b/tests/standalone/io/http_headers_test.dart
@@ -239,7 +239,7 @@ void testContentType() {
}
_ContentType contentType;
- contentType = new _ContentType();
+ contentType = new _ContentType("", "");
Søren Gjesse 2012/09/18 09:34:16 Replace new _ContentType("", "") with new ContentT
Mads Ager (google) 2012/09/18 10:46:39 Done.
Expect.equals("", contentType.primaryType);
Expect.equals("", contentType.subType);
Expect.equals("/", contentType.value);
« runtime/bin/process.dart ('K') | « tests/co19/test_config.dart ('k') | tools/test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698