chore(windows): fix the test.server.dart task

Closes #2703
This commit is contained in:
Marc Laval
2015-06-25 18:29:19 +02:00
parent 65769699b0
commit dd7910347a
3 changed files with 3 additions and 3 deletions

View File

@ -91,7 +91,7 @@ void _testNgDeps(String name, String inputPath,
expect(await reader.hasInput(expectedId)).toBeFalse();
} else {
expect(formatter.format(output))
.toEqual(await reader.readAsString(expectedId));
.toEqual((await reader.readAsString(expectedId)).replaceAll('\r\n', '\n'));
}
});
}