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

Unified Diff: pkg/http/test/multipart_test.dart

Issue 11887016: Make StreamController's unnamed constructor create a single-sub stream. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments. Created 7 years, 11 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 | « pkg/http/test/mock_client_test.dart ('k') | pkg/http/test/response_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/http/test/multipart_test.dart
diff --git a/pkg/http/test/multipart_test.dart b/pkg/http/test/multipart_test.dart
index ab6d25a280433fbc155b180a4f3a50f8b69d9e9a..5d0aa667ec1d2d81fef92e689ab608a59b654254 100644
--- a/pkg/http/test/multipart_test.dart
+++ b/pkg/http/test/multipart_test.dart
@@ -156,7 +156,7 @@ void main() {
test('with a stream file', () {
var request = new http.MultipartRequest('POST', dummyUrl);
- var stream = new StreamController.singleSubscription();
+ var stream = new StreamController();
request.files.add(new http.MultipartFile('file', stream, 5));
expect(request, bodyMatches('''
@@ -174,7 +174,7 @@ void main() {
test('with an empty stream file', () {
var request = new http.MultipartRequest('POST', dummyUrl);
- var stream = new StreamController.singleSubscription();
+ var stream = new StreamController();
request.files.add(new http.MultipartFile('file', stream, 0));
expect(request, bodyMatches('''
« no previous file with comments | « pkg/http/test/mock_client_test.dart ('k') | pkg/http/test/response_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698