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

@ -113,7 +113,7 @@ class Rewriter {
String _importDebugReflectionCapabilities(ImportDirective node) {
var uri = '${node.uri}';
uri = path.join(path.dirname(uri), 'debug_${path.basename(uri)}');
uri = path.join(path.dirname(uri), 'debug_${path.basename(uri)}').replaceAll('\\', '/');
var asClause = node.prefix != null ? ' as ${node.prefix}' : '';
return 'import $uri$asClause;';
}