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

Unified Diff: tests/standalone/io/sleep_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/standalone/io/sleep_test.dart
diff --git a/tests/standalone/io/sleep_test.dart b/tests/standalone/io/sleep_test.dart
index 91c662571a0c34fa6f34e7665c87da9521945ac3..f2402961cff8c87cefe362396a89820921eb58e7 100644
--- a/tests/standalone/io/sleep_test.dart
+++ b/tests/standalone/io/sleep_test.dart
@@ -21,8 +21,8 @@ main() {
bool sawError = false;
try {
sleep(new Duration(milliseconds: -1));
- expect(false, isTrue); // should not reach here.
- } on ArgumentError catch(e) {
+ expect(false, isTrue); // should not reach here.
+ } on ArgumentError catch (e) {
sawError = true;
}
expect(sawError, isTrue);

Powered by Google App Engine
This is Rietveld 408576698