| Index: pkg/analyzer/test/services/formatter_test.dart
|
| ===================================================================
|
| --- pkg/analyzer/test/services/formatter_test.dart (revision 32869)
|
| +++ pkg/analyzer/test/services/formatter_test.dart (working copy)
|
| @@ -18,8 +18,11 @@
|
|
|
| /// Data-driven statement tests
|
| group('stmt_tests.data', () {
|
| + // NOTE: statement tests are run with transforms enabled
|
| runTests('stmt_tests.data', (input, expectedOutput) {
|
| - expect(formatStatement(input) + '\n', equals(expectedOutput));
|
| + expect(formatStatement(input,
|
| + options: new FormatterOptions(codeTransforms: true)) + '\n',
|
| + equals(expectedOutput));
|
| });
|
| });
|
|
|
|
|