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

Unified Diff: tests/html/queryall_test.dart

Issue 11260017: Fix dartium html test. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 2 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/html/queryall_test.dart
diff --git a/tests/html/queryall_test.dart b/tests/html/queryall_test.dart
index 6b701573ac002a32f6cd1ec3e13868cd97fef29a..181f5c31c69567cf3f977af16487b12630b4541c 100644
--- a/tests/html/queryall_test.dart
+++ b/tests/html/queryall_test.dart
@@ -76,7 +76,7 @@ main() {
test('immutable', () {
List<Element> list = div.queryAll('*');
int len = list.length;
- expect(() { list.add(new DivElement()); }, throwsException);
+ expect(() { list.add(new DivElement()); }, throwsUnsupportedError);
expect(list.length, equals(len));
});
}
« 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