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); |
} |