Chromium Code Reviews| Index: test/pretty_print_test.dart |
| diff --git a/test/pretty_print_test.dart b/test/pretty_print_test.dart |
| index c71a94fc24d59b02cccc65504817b21e684a3de2..551db459e8f8eada60838c3688b319d82c0c7efb 100644 |
| --- a/test/pretty_print_test.dart |
| +++ b/test/pretty_print_test.dart |
| @@ -120,7 +120,7 @@ void main() { |
| }); |
| test("that's recursive", () { |
| - var list = [1, 2, 3]; |
| + var list = <dynamic>[1, 2, 3]; |
| list.add(list); |
| expect(prettyPrint(list), equals("[1, 2, 3, (recursive)]")); |
| }); |