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

Unified Diff: tests/lib_strong/html/typed_arrays_4_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/lib_strong/html/typed_arrays_4_test.dart
diff --git a/tests/lib_strong/html/typed_arrays_4_test.dart b/tests/lib_strong/html/typed_arrays_4_test.dart
index c75ade8080d24a701a7cf14dd71b85adec1d47d7..ba8ee162039517f7aee5b1edefe3676c449aed0f 100644
--- a/tests/lib_strong/html/typed_arrays_4_test.dart
+++ b/tests/lib_strong/html/typed_arrays_4_test.dart
@@ -14,32 +14,32 @@ main() {
}
test('indexOf_dynamic', () {
- var a1 = new Uint8List(1024);
- for (int i = 0; i < a1.length; i++) {
- a1[i] = i;
- }
-
- expect(a1.indexOf(50), 50);
- expect(a1.indexOf(50, 50), 50);
- expect(a1.indexOf(50, 51), 256 + 50);
-
- expect(a1.lastIndexOf(50), 768 + 50);
- expect(a1.lastIndexOf(50, 768 + 50), 768 + 50);
- expect(a1.lastIndexOf(50, 768 + 50 - 1), 512 + 50);
+ var a1 = new Uint8List(1024);
+ for (int i = 0; i < a1.length; i++) {
+ a1[i] = i;
+ }
+
+ expect(a1.indexOf(50), 50);
+ expect(a1.indexOf(50, 50), 50);
+ expect(a1.indexOf(50, 51), 256 + 50);
+
+ expect(a1.lastIndexOf(50), 768 + 50);
+ expect(a1.lastIndexOf(50, 768 + 50), 768 + 50);
+ expect(a1.lastIndexOf(50, 768 + 50 - 1), 512 + 50);
});
test('indexOf_typed', () {
- Uint8List a1 = new Uint8List(1024);
- for (int i = 0; i < a1.length; i++) {
- a1[i] = i;
- }
-
- expect(a1.indexOf(50), 50);
- expect(a1.indexOf(50, 50), 50);
- expect(a1.indexOf(50, 51), 256 + 50);
-
- expect(a1.lastIndexOf(50), 768 + 50);
- expect(a1.lastIndexOf(50, 768 + 50), 768 + 50);
- expect(a1.lastIndexOf(50, 768 + 50 - 1), 512 + 50);
+ Uint8List a1 = new Uint8List(1024);
+ for (int i = 0; i < a1.length; i++) {
+ a1[i] = i;
+ }
+
+ expect(a1.indexOf(50), 50);
+ expect(a1.indexOf(50, 50), 50);
+ expect(a1.indexOf(50, 51), 256 + 50);
+
+ expect(a1.lastIndexOf(50), 768 + 50);
+ expect(a1.lastIndexOf(50, 768 + 50), 768 + 50);
+ expect(a1.lastIndexOf(50, 768 + 50 - 1), 512 + 50);
});
}

Powered by Google App Engine
This is Rietveld 408576698