mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
Fix typo in function name (#136273)
Rename `removeIOSimulator` to `removeIOSSimulator`.
This commit is contained in:
parent
f65dd3bac0
commit
ddc9b40a98
@ -19,7 +19,7 @@ Future<void> main() async {
|
||||
await createHotModeTest(deviceIdOverride: deviceId, checkAppRunningOnLocalDevice: true)();
|
||||
});
|
||||
} finally {
|
||||
await removeIOSimulator(simulatorDeviceId);
|
||||
await removeIOSSimulator(simulatorDeviceId);
|
||||
}
|
||||
|
||||
return TaskResult.success(null);
|
||||
|
@ -663,7 +663,7 @@ end
|
||||
} catch (e) {
|
||||
return TaskResult.failure(e.toString());
|
||||
} finally {
|
||||
unawaited(removeIOSimulator(simulatorDeviceId));
|
||||
unawaited(removeIOSSimulator(simulatorDeviceId));
|
||||
rmTree(tempDir);
|
||||
}
|
||||
});
|
||||
|
@ -24,7 +24,7 @@ Future<void> main() async {
|
||||
},
|
||||
);
|
||||
} finally {
|
||||
await removeIOSimulator(simulatorDeviceId);
|
||||
await removeIOSSimulator(simulatorDeviceId);
|
||||
}
|
||||
return TaskResult.success(null);
|
||||
});
|
||||
|
@ -50,7 +50,7 @@ Future<String?> minPhoneOSVersion(String pathToBinary) async {
|
||||
/// Creates and boots a new simulator, passes the new simulator's identifier to
|
||||
/// `testFunction`.
|
||||
///
|
||||
/// Remember to call removeIOSimulator in the test teardown.
|
||||
/// Remember to call removeIOSSimulator in the test teardown.
|
||||
Future<void> testWithNewIOSSimulator(
|
||||
String deviceName,
|
||||
SimulatorFunction testFunction, {
|
||||
@ -110,7 +110,7 @@ Future<void> testWithNewIOSSimulator(
|
||||
}
|
||||
|
||||
/// Shuts down and deletes simulator with deviceId.
|
||||
Future<void> removeIOSimulator(String? deviceId) async {
|
||||
Future<void> removeIOSSimulator(String? deviceId) async {
|
||||
if (deviceId != null && deviceId != '') {
|
||||
await eval(
|
||||
'xcrun',
|
||||
|
@ -278,7 +278,7 @@ public class $pluginClass: NSObject, FlutterPlugin {
|
||||
}
|
||||
});
|
||||
} finally {
|
||||
await removeIOSimulator(simulatorDeviceId);
|
||||
await removeIOSSimulator(simulatorDeviceId);
|
||||
}
|
||||
case 'linux':
|
||||
if (await exec(
|
||||
|
Loading…
Reference in New Issue
Block a user