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

Unified Diff: tests/lib_strong/math/random_big_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/math/random_big_test.dart
diff --git a/tests/lib_strong/math/random_big_test.dart b/tests/lib_strong/math/random_big_test.dart
index 1a22ea1dc71d90f24b6823fda953a4b9bb6676a3..f799da3f9d72092cb73685185db2e1c6e58383c7 100644
--- a/tests/lib_strong/math/random_big_test.dart
+++ b/tests/lib_strong/math/random_big_test.dart
@@ -12,8 +12,8 @@ import 'dart:math';
main() {
var results = [];
- for(var i = 60; i < 80; i++) {
- var rng = new Random(1<<i);
+ for (var i = 60; i < 80; i++) {
+ var rng = new Random(1 << i);
var val = rng.nextInt(100000);
print("$i: $val");
Expect.isFalse(results.contains(val));

Powered by Google App Engine
This is Rietveld 408576698