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

Unified Diff: tests/lib_strong/convert/utf8_encode_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/lib_strong/convert/utf8_encode_test.dart
diff --git a/tests/lib_strong/convert/utf8_encode_test.dart b/tests/lib_strong/convert/utf8_encode_test.dart
index 489a12460e48c4fcbf3cec6df05a346e9c2d636c..275f664170dd160ec57775c16857629301e444e5 100644
--- a/tests/lib_strong/convert/utf8_encode_test.dart
+++ b/tests/lib_strong/convert/utf8_encode_test.dart
@@ -36,8 +36,8 @@ void testEncodeSlice() {
Expect.listEquals([0x42, 0x43, 0x44],
encoder.convert(ascii, 1, 4));
- Expect.throws(() => encoder.convert(ascii, -1)); // start < 0.
- Expect.throws(() => encoder.convert(ascii, 6)); // start > length
+ Expect.throws(() => encoder.convert(ascii, -1)); // start < 0.
+ Expect.throws(() => encoder.convert(ascii, 6)); // start > length
Expect.throws(() => encoder.convert(ascii, 0, -1)); // end < 0
Expect.throws(() => encoder.convert(ascii, 0, 6)); // end > length
sra1 2017/03/21 03:01:09 fix
Expect.throws(() => encoder.convert(ascii, 3, 2)); // end < start

Powered by Google App Engine
This is Rietveld 408576698