| Index: test/codegen/lib/convert/codec2_test.dart
|
| diff --git a/test/codegen/lib/convert/codec2_test.dart b/test/codegen/lib/convert/codec2_test.dart
|
| index e8fa875df22eaf7f11a272ab9c4799572e7fc77b..e8ae6d998b83bc3acd8f91f36b2213c12b4ed7c8 100644
|
| --- a/test/codegen/lib/convert/codec2_test.dart
|
| +++ b/test/codegen/lib/convert/codec2_test.dart
|
| @@ -38,5 +38,5 @@ main() {
|
| List<int> bytes = JSON_TO_BYTES.encode(["json-object"]);
|
| decoded = JSON_TO_BYTES.decode(bytes);
|
| Expect.isTrue(decoded is List);
|
| - Expect.equals("json-object", decoded[0]);
|
| + Expect.equals("json-object", (decoded as List)[0]);
|
| }
|
|
|