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

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

Issue 11975017: Stop treating StreamController as a Stream. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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 5d0aa667ec1d2d81fef92e689ab608a59b654254..64fd330d1521365aaf5ea3043a79687f53516a80 100644
--- a/pkg/http/test/multipart_test.dart
+++ b/pkg/http/test/multipart_test.dart
@@ -156,8 +156,8 @@ void main() {
test('with a stream file', () {
var request = new http.MultipartRequest('POST', dummyUrl);
- var stream = new StreamController();
- request.files.add(new http.MultipartFile('file', stream, 5));
+ var controller = new StreamController();
+ request.files.add(new http.MultipartFile('file', controller.stream, 5));
expect(request, bodyMatches('''
--{{boundary}}
@@ -168,14 +168,14 @@ void main() {
--{{boundary}}--
'''));
- stream.add([104, 101, 108, 108, 111]);
- stream.close();
+ controller.add([104, 101, 108, 108, 111]);
+ controller.close();
});
test('with an empty stream file', () {
var request = new http.MultipartRequest('POST', dummyUrl);
- var stream = new StreamController();
- request.files.add(new http.MultipartFile('file', stream, 0));
+ var controller = new StreamController();
+ request.files.add(new http.MultipartFile('file', controller.stream, 0));
expect(request, bodyMatches('''
--{{boundary}}
@@ -186,7 +186,7 @@ void main() {
--{{boundary}}--
'''));
- stream.close();
+ controller.close();
});
test('with a byte file', () {
« 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