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

Unified Diff: tests/html/xmldocument_test.dart

Issue 10989013: Change IllegalArgumentException to ArgumentError. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Updated co19 test expectations. Created 8 years, 3 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/html/xmldocument_test.dart
diff --git a/tests/html/xmldocument_test.dart b/tests/html/xmldocument_test.dart
index 0e245a895212109cf2d2ad74b51a9702461d702f..3dba45eb7d899a81c56edb99dd6df6779fc72abc 100644
--- a/tests/html/xmldocument_test.dart
+++ b/tests/html/xmldocument_test.dart
@@ -25,7 +25,7 @@ main() {
//
// test('with a parse error', () {
// Expect.throws(() => new XMLDocument.xml("<xml></xml>foo"),
- // (e) => e is IllegalArgumentException);
+ // (e) => e is ArgumentError);
// });
test('with a PARSERERROR tag', () {

Powered by Google App Engine
This is Rietveld 408576698