| Index: tests/corelib/queue_iterator_test.dart
|
| diff --git a/tests/corelib/queue_iterator_test.dart b/tests/corelib/queue_iterator_test.dart
|
| index cee6a57f7850c20aabdc83fd5b53d49471836f06..4f9ffff019bd8dc3ed04403477fc4108154e7293 100644
|
| --- a/tests/corelib/queue_iterator_test.dart
|
| +++ b/tests/corelib/queue_iterator_test.dart
|
| @@ -14,7 +14,7 @@ class QueueIteratorTest {
|
| var exception = null;
|
| try {
|
| it.next();
|
| - } on NoMoreElementsException catch (e) {
|
| + } on StateError catch (e) {
|
| exception = e;
|
| }
|
| Expect.equals(true, exception != null);
|
|
|