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

Unified Diff: tests/corelib/list_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/corelib/list_test.dart
diff --git a/tests/corelib/list_test.dart b/tests/corelib/list_test.dart
index a72a189dde51aabb9261ee4c47a14c6916d32d1a..96367dedc14f2bbce127262d0313836c82bf56bd 100644
--- a/tests/corelib/list_test.dart
+++ b/tests/corelib/list_test.dart
@@ -64,9 +64,9 @@ void testErrors() {
}
}
testIndex(list, name) {
- testIndexError(list, list.length, name); // Just too big.
- testIndexError(list, -1, name); // Negative.
- testIndexError(list, 0x123456789, name); // > 2^32.
+ testIndexError(list, list.length, name); // Just too big.
+ testIndexError(list, -1, name); // Negative.
+ testIndexError(list, 0x123456789, name); // > 2^32.
testIndexError(list, -0x123456789, name); // < -2^32.
sra1 2017/03/21 03:39:29 fix
}

Powered by Google App Engine
This is Rietveld 408576698