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

Unified Diff: tests/html/element_classes_test.dart

Issue 14135005: Fix 'collection' tests and co19 dartc/dart2js status files. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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
« no previous file with comments | « tests/corelib/collection_to_string_test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/html/element_classes_test.dart
diff --git a/tests/html/element_classes_test.dart b/tests/html/element_classes_test.dart
index f499916cc49ca60bd1c2413e351c1bd1874c9837..83bb86ce44eabbb70ec826976b3c7e92f0b4cf1c 100644
--- a/tests/html/element_classes_test.dart
+++ b/tests/html/element_classes_test.dart
@@ -150,13 +150,6 @@ main() {
expect(classes, orderedEquals(['baz', 'qux', 'quux']));
});
- test('isSubsetOf', () {
- final classes = makeClassSet();
- expect(classes.isSubsetOf(['foo', 'bar', 'baz'].toSet()), isTrue);
- expect(classes.isSubsetOf(['foo', 'bar', 'baz', 'qux'].toSet()), isTrue);
- expect(classes.isSubsetOf(['foo', 'bar', 'qux'].toSet()), isFalse);
- });
-
test('containsAll', () {
final classes = makeClassSet();
expect(classes.containsAll(['foo', 'baz'].toSet()), isTrue);
« no previous file with comments | « tests/corelib/collection_to_string_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698