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

Unified Diff: tests/lib_strong/async/stream_periodic2_test.dart

Issue 2771453003: Format all tests. (Closed)
Patch Set: Format files Created 3 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/lib_strong/async/stream_periodic2_test.dart
diff --git a/tests/lib_strong/async/stream_periodic2_test.dart b/tests/lib_strong/async/stream_periodic2_test.dart
index ce0bddaa8719efe82090cf2839bbc4174fce7caa..100261db8bacf20f2cbdec5ef0757fdfaa6e6bce 100644
--- a/tests/lib_strong/async/stream_periodic2_test.dart
+++ b/tests/lib_strong/async/stream_periodic2_test.dart
@@ -10,8 +10,8 @@ import 'package:unittest/unittest.dart';
main() {
test("stream-periodic2", () {
- Stream stream = new Stream.periodic(const Duration(milliseconds: 1),
- (x) => x);
+ Stream stream =
+ new Stream.periodic(const Duration(milliseconds: 1), (x) => x);
int receivedCount = 0;
var subscription;
subscription = stream.listen(expectAsync((data) {

Powered by Google App Engine
This is Rietveld 408576698