Fix an incorrect variable name in Dart 2 flutter test code (#14283)

The code was attempting to delete temporaryDirectory while it should have been deleting tempBundleDirectory
This commit is contained in:
Vyacheslav Egorov 2018-01-25 19:33:24 -08:00 committed by GitHub
parent 667f478506
commit ae72cea001
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -217,7 +217,7 @@ class _FlutterPlatform extends PlatformPlugin {
.createTempSync('flutter_bundle_directory');
finalizers.add(() async {
printTrace('test $ourTestCount: deleting temporary bundle directory');
temporaryDirectory.deleteSync(recursive: true);
tempBundleDirectory.deleteSync(recursive: true);
});
// copy 'vm_platform_strong.dill' into 'platform.dill'