[flutter_tools] enable CK restart tests (#71598)

This commit is contained in:
Jonah Williams
2020-12-02 13:10:54 -08:00
committed by GitHub
parent a2aa2ed02d
commit e8b87f7cd2
2 changed files with 2 additions and 2 deletions

View File

@@ -77,7 +77,7 @@ String getFlutterRoot() {
throw invalidScript();
}
final List<String> parts = path.split(globals.fs.path.fromUri(scriptUri));
final List<String> parts = path.split(LocalFileSystem.instance.path.fromUri(scriptUri));
final int toolsIndex = parts.indexOf('flutter_tools');
if (toolsIndex == -1) {
throw invalidScript();

View File

@@ -68,5 +68,5 @@ void main() {
} finally {
await subscription.cancel();
}
}, skip: true); // https://github.com/flutter/flutter/issues/70486
});
}