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

Unified Diff: tests/lib/typed_data/typed_list_iterable_test.dart

Issue 15647012: Remove int64 lists from test. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 7 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/lib/typed_data/typed_list_iterable_test.dart
diff --git a/tests/lib/typed_data/typed_list_iterable_test.dart b/tests/lib/typed_data/typed_list_iterable_test.dart
index 3942c1d361dde9d20f22f43e2804ec225208eeb3..4d4a3dbef8b431d147a1225457f599cd6400a013 100644
--- a/tests/lib/typed_data/typed_list_iterable_test.dart
+++ b/tests/lib/typed_data/typed_list_iterable_test.dart
@@ -165,20 +165,16 @@ main() {
testIterableFunctions(new Int8List.fromList([3, 9]), 3, 9);
testIterableFunctions(new Int16List.fromList([3, 9]), 3, 9);
testIterableFunctions(new Int32List.fromList([3, 9]), 3, 9);
- testIterableFunctions(new Int64List.fromList([3, 9]), 3, 9);
testIterableFunctions(new Uint8List.fromList([3, 9]), 3, 9);
testIterableFunctions(new Uint16List.fromList([3, 9]), 3, 9);
testIterableFunctions(new Uint32List.fromList([3, 9]), 3, 9);
- testIterableFunctions(new Uint64List.fromList([3, 9]), 3, 9);
emptyChecks(new Float32List(0));
emptyChecks(new Float64List(0));
emptyChecks(new Int8List(0));
emptyChecks(new Int16List(0));
emptyChecks(new Int32List(0));
- emptyChecks(new Int64List(0));
emptyChecks(new Uint8List(0));
emptyChecks(new Uint16List(0));
emptyChecks(new Uint32List(0));
- emptyChecks(new Uint64List(0));
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698