| Index: tests/compiler/dart2js/sourcemaps/mapping_test.dart
|
| diff --git a/tests/compiler/dart2js/sourcemaps/mapping_test.dart b/tests/compiler/dart2js/sourcemaps/mapping_test.dart
|
| index ee1901ed1b7eb0a2eaceefd84e80c6f13c6502e0..4d84ed073b4cf6e82661b573fbd026e19f07f659 100644
|
| --- a/tests/compiler/dart2js/sourcemaps/mapping_test.dart
|
| +++ b/tests/compiler/dart2js/sourcemaps/mapping_test.dart
|
| @@ -138,10 +138,11 @@ Future runTest(int index, Test test,
|
| options: options);
|
| Expect.isTrue(compilationResult.isSuccess,
|
| "Unsuccessful compilation of test:\n${test.code}");
|
| - String sourceMapText = collector.getOutput('', 'js.map');
|
| + String sourceMapText = collector.getOutput('', OutputType.sourceMap);
|
| SingleMapping sourceMap = parse(sourceMapText);
|
| if (writeJs) {
|
| - new File('out.js').writeAsStringSync(collector.getOutput('', 'js'));
|
| + new File('out.js')
|
| + .writeAsStringSync(collector.getOutput('', OutputType.js));
|
| new File('out.js.map').writeAsStringSync(sourceMapText);
|
| }
|
|
|
|
|