Unverified Commit ae72cea0 authored by Vyacheslav Egorov's avatar Vyacheslav Egorov Committed by GitHub

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
parent 667f4785
......@@ -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'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment