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

Unified Diff: tests/language_strong/string_no_operator_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/language_strong/string_no_operator_test.dart
diff --git a/tests/language_strong/string_no_operator_test.dart b/tests/language_strong/string_no_operator_test.dart
index 009442b0edd9fb40c5e484d51c692f5d714d7c47..de69cfaded62459aad79e5df63be39a74aefc3a3 100644
--- a/tests/language_strong/string_no_operator_test.dart
+++ b/tests/language_strong/string_no_operator_test.dart
@@ -5,22 +5,22 @@
import 'package:expect/expect.dart';
main() {
- var x = "x";
- var y = "y";
- Expect.throws(() => x < y);
- Expect.throws(() => x <= y);
- Expect.throws(() => x > y);
- Expect.throws(() => x >= y);
- Expect.throws(() => x - y);
- Expect.throws(() => x * y);
- Expect.throws(() => x / y);
- Expect.throws(() => x ~/ y);
- Expect.throws(() => x % y);
- Expect.throws(() => x >> y);
- Expect.throws(() => x << y);
- Expect.throws(() => x & y);
- Expect.throws(() => x | y);
- Expect.throws(() => x ^ y);
- Expect.throws(() => -x);
- Expect.throws(() => ~x);
+ var x = "x";
+ var y = "y";
+ Expect.throws(() => x < y);
+ Expect.throws(() => x <= y);
+ Expect.throws(() => x > y);
+ Expect.throws(() => x >= y);
+ Expect.throws(() => x - y);
+ Expect.throws(() => x * y);
+ Expect.throws(() => x / y);
+ Expect.throws(() => x ~/ y);
+ Expect.throws(() => x % y);
+ Expect.throws(() => x >> y);
+ Expect.throws(() => x << y);
+ Expect.throws(() => x & y);
+ Expect.throws(() => x | y);
+ Expect.throws(() => x ^ y);
+ Expect.throws(() => -x);
+ Expect.throws(() => ~x);
}

Powered by Google App Engine
This is Rietveld 408576698