Chromium Code Reviews| Index: tests/corelib/list_test.dart |
| diff --git a/tests/corelib/list_test.dart b/tests/corelib/list_test.dart |
| index 159c6d5f1a053f30d782f6011dae1ed126ece183..dc2b82a91f8dd51d1e87b39b614dc3c00bec725a 100644 |
| --- a/tests/corelib/list_test.dart |
| +++ b/tests/corelib/list_test.dart |
| @@ -90,7 +90,7 @@ class ListTest { |
| var exception = null; |
| try { |
| list.clear(); |
| - } on UnsupportedOperationException catch (e) { |
| + } on UnsupportedError catch (e) { |
| exception = e; |
| } |
| Expect.equals(true, exception != null); |