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

Unified Diff: tests/language_strong/generic_deep_test.dart

Issue 2763823002: Move spaces from before comments to within comments (Closed)
Patch Set: Fix comments Created 3 years, 9 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/generic_deep_test.dart
diff --git a/tests/language_strong/generic_deep_test.dart b/tests/language_strong/generic_deep_test.dart
index d3ee24142e41468b89be99ee39982a5783ad9d23..558d1a39ca6c590afdd96a95109c61938750cdef 100644
--- a/tests/language_strong/generic_deep_test.dart
+++ b/tests/language_strong/generic_deep_test.dart
@@ -68,9 +68,9 @@ main() {
Expect.isTrue(NFromInt(2) is !S<S<S>>);
// Greater-than tests
- Expect.isTrue(NFromInt(4) is S<S>); // 4 >= 2
- Expect.isTrue(NFromInt(4) is S<S<S>>); // 4 >= 3
- Expect.isTrue(NFromInt(4) is S<S<S<S>>>); // 4 >= 4
+ Expect.isTrue(NFromInt(4) is S<S>); // 4 >= 2
+ Expect.isTrue(NFromInt(4) is S<S<S>>); // 4 >= 3
+ Expect.isTrue(NFromInt(4) is S<S<S<S>>>); // 4 >= 4
Expect.isTrue(NFromInt(4) is !S<S<S<S<S>>>>); // 4 < 5
sra1 2017/03/21 03:28:14 fix
Expect.isTrue(IsEven(NFromInt(0)));

Powered by Google App Engine
This is Rietveld 408576698