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

Unified Diff: tests/lib_strong/typed_data/typed_data_from_list_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/typed_data/typed_data_from_list_test.dart
diff --git a/tests/lib_strong/typed_data/typed_data_from_list_test.dart b/tests/lib_strong/typed_data/typed_data_from_list_test.dart
index a0e38a698d0ab326e5a1087df2ac4fcf42adf726..9548c737f6e6eecbb3013e0dcacde047cf7a97f4 100644
--- a/tests/lib_strong/typed_data/typed_data_from_list_test.dart
+++ b/tests/lib_strong/typed_data/typed_data_from_list_test.dart
@@ -6,9 +6,9 @@ import 'dart:collection';
import 'dart:typed_data';
main() {
- var list = new UnmodifiableListView([1, 2]);
- var typed = new Uint8List.fromList(list);
- if (typed[0] != 1 || typed[1] != 2 || typed.length != 2) {
- throw 'Test failed';
- }
+ var list = new UnmodifiableListView([1, 2]);
+ var typed = new Uint8List.fromList(list);
+ if (typed[0] != 1 || typed[1] != 2 || typed.length != 2) {
+ throw 'Test failed';
+ }
}

Powered by Google App Engine
This is Rietveld 408576698