| Index: tests/lib/convert/json_chunk_test.dart
|
| diff --git a/tests/lib/convert/json_chunk_test.dart b/tests/lib/convert/json_chunk_test.dart
|
| index 22f3ebad7d6e60dcde8c9582698c088f6aa671d8..28e92977913fe95ec8f44f3b2b1d8214d822a50b 100644
|
| --- a/tests/lib/convert/json_chunk_test.dart
|
| +++ b/tests/lib/convert/json_chunk_test.dart
|
| @@ -20,7 +20,7 @@ jsonTest(testName, expect, action(sink)) {
|
|
|
| jsonThrowsTest(testName, action(sink)) {
|
| var sink = new ChunkedConversionSink.withCallback((values) {
|
| - Expect.unreachable("Should have thrown.", testName);
|
| + Expect.fail("Should have thrown: $testName");
|
| });
|
| var decoderSink = JSON.decoder.startChunkedConversion(sink);
|
| Expect.throws(() { action(decoderSink); }, (e) => e is FormatException,
|
|
|