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

Unified Diff: tests/isolate/int_from_environment_default_value_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/isolate/int_from_environment_default_value_test.dart
diff --git a/tests/isolate/int_from_environment_default_value_test.dart b/tests/isolate/int_from_environment_default_value_test.dart
index 4a04e74ffa7a9d57738c0aaee35061b190678d13..8c825d792c72544c8f0de7bf7fe8c2ac542b0405 100644
--- a/tests/isolate/int_from_environment_default_value_test.dart
+++ b/tests/isolate/int_from_environment_default_value_test.dart
@@ -8,8 +8,8 @@ import "package:expect/expect.dart";
void test(port) {
Expect.isNull(const int.fromEnvironment('NOT_FOUND'));
- Expect.equals(12345, const int.fromEnvironment('NOT_FOUND',
- defaultValue: 12345));
+ Expect.equals(
+ 12345, const int.fromEnvironment('NOT_FOUND', defaultValue: 12345));
if (port != null) port.send(null);
}

Powered by Google App Engine
This is Rietveld 408576698