Fix typo in function name (#136273)

Rename `removeIOSimulator` to `removeIOSSimulator`.
This commit is contained in:
Victoria Ashworth 2023-10-12 10:53:00 -05:00 committed by GitHub
parent f65dd3bac0
commit ddc9b40a98
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 6 additions and 6 deletions

View File

@ -19,7 +19,7 @@ Future<void> main() async {
await createHotModeTest(deviceIdOverride: deviceId, checkAppRunningOnLocalDevice: true)(); await createHotModeTest(deviceIdOverride: deviceId, checkAppRunningOnLocalDevice: true)();
}); });
} finally { } finally {
await removeIOSimulator(simulatorDeviceId); await removeIOSSimulator(simulatorDeviceId);
} }
return TaskResult.success(null); return TaskResult.success(null);

View File

@ -663,7 +663,7 @@ end
} catch (e) { } catch (e) {
return TaskResult.failure(e.toString()); return TaskResult.failure(e.toString());
} finally { } finally {
unawaited(removeIOSimulator(simulatorDeviceId)); unawaited(removeIOSSimulator(simulatorDeviceId));
rmTree(tempDir); rmTree(tempDir);
} }
}); });

View File

@ -24,7 +24,7 @@ Future<void> main() async {
}, },
); );
} finally { } finally {
await removeIOSimulator(simulatorDeviceId); await removeIOSSimulator(simulatorDeviceId);
} }
return TaskResult.success(null); return TaskResult.success(null);
}); });

View File

@ -50,7 +50,7 @@ Future<String?> minPhoneOSVersion(String pathToBinary) async {
/// Creates and boots a new simulator, passes the new simulator's identifier to /// Creates and boots a new simulator, passes the new simulator's identifier to
/// `testFunction`. /// `testFunction`.
/// ///
/// Remember to call removeIOSimulator in the test teardown. /// Remember to call removeIOSSimulator in the test teardown.
Future<void> testWithNewIOSSimulator( Future<void> testWithNewIOSSimulator(
String deviceName, String deviceName,
SimulatorFunction testFunction, { SimulatorFunction testFunction, {
@ -110,7 +110,7 @@ Future<void> testWithNewIOSSimulator(
} }
/// Shuts down and deletes simulator with deviceId. /// Shuts down and deletes simulator with deviceId.
Future<void> removeIOSimulator(String? deviceId) async { Future<void> removeIOSSimulator(String? deviceId) async {
if (deviceId != null && deviceId != '') { if (deviceId != null && deviceId != '') {
await eval( await eval(
'xcrun', 'xcrun',

View File

@ -278,7 +278,7 @@ public class $pluginClass: NSObject, FlutterPlugin {
} }
}); });
} finally { } finally {
await removeIOSimulator(simulatorDeviceId); await removeIOSSimulator(simulatorDeviceId);
} }
case 'linux': case 'linux':
if (await exec( if (await exec(