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

Unified Diff: tests/standalone/src/io/ChunkedStreamTest.dart

Issue 10035056: Fix a number of editor errors and warnings in io tests (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 8 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/src/io/ChunkedStreamTest.dart
diff --git a/tests/standalone/src/io/ChunkedStreamTest.dart b/tests/standalone/src/io/ChunkedStreamTest.dart
index 92e8289b2d475daf20d20624e9eb1380f5b35e35..30c9349f47c661c0f06888aefb257008b9c60bca 100644
--- a/tests/standalone/src/io/ChunkedStreamTest.dart
+++ b/tests/standalone/src/io/ChunkedStreamTest.dart
@@ -7,7 +7,7 @@
void test1() {
void testWithChunkSize(var data, int chunkSize, Function testDone) {
- InputStream list_input_stream = new ListInputStream();
+ ListInputStream list_input_stream = new ListInputStream();
list_input_stream.write(data);
list_input_stream.markEndOfStream();
ChunkedInputStream stream = new ChunkedInputStream(list_input_stream);
@@ -68,7 +68,7 @@ void test1() {
void test2() {
- InputStream s = new ListInputStream();
+ ListInputStream s = new ListInputStream();
ChunkedInputStream stream = new ChunkedInputStream(s);
stream.chunkSize = 5;
ReceivePort donePort = new ReceivePort();

Powered by Google App Engine
This is Rietveld 408576698