Skip to content

Commit a76eb71

Browse files
authored
Fix typos in test names (flutter#85126)
1 parent b30c721 commit a76eb71

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

packages/flutter_tools/test/general.shard/build_system/targets/ios_test.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,12 +64,12 @@ void main() {
6464
);
6565
});
6666

67-
testWithoutContext('iOS AOT targets has analyicsName', () {
67+
testWithoutContext('iOS AOT targets has analyticsName', () {
6868
expect(const AotAssemblyRelease().analyticsName, 'ios_aot');
6969
expect(const AotAssemblyProfile().analyticsName, 'ios_aot');
7070
});
7171

72-
testUsingContext('DebugUniveralFramework creates simulator binary', () async {
72+
testUsingContext('DebugUniversalFramework creates simulator binary', () async {
7373
environment.defines[kIosArchs] = 'x86_64';
7474
environment.defines[kSdkRoot] = 'path/to/iPhoneSimulator.sdk';
7575
processManager.addCommand(
@@ -113,7 +113,7 @@ void main() {
113113
Platform: () => macPlatform,
114114
});
115115

116-
testUsingContext('DebugUniveralFramework creates expected binary with arm64 only arch', () async {
116+
testUsingContext('DebugUniversalFramework creates expected binary with arm64 only arch', () async {
117117
environment.defines[kIosArchs] = 'arm64';
118118
environment.defines[kSdkRoot] = 'path/to/iPhoneOS.sdk';
119119
processManager.addCommand(

packages/flutter_tools/test/general.shard/build_system/targets/linux_test.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ void main() {
144144
ProcessManager: () => FakeProcessManager.any(),
145145
});
146146

147-
testWithoutContext("DebugBundleLinuxAssets's name depends on target platforms", () async {
147+
testWithoutContext("DebugBundleLinuxAssets' name depends on target platforms", () async {
148148
expect(const DebugBundleLinuxAssets(TargetPlatform.linux_x64).name, 'debug_bundle_linux-x64_assets');
149149
expect(const DebugBundleLinuxAssets(TargetPlatform.linux_arm64).name, 'debug_bundle_linux-arm64_assets');
150150
});
@@ -183,7 +183,7 @@ void main() {
183183
ProcessManager: () => FakeProcessManager.any(),
184184
});
185185

186-
testWithoutContext("ProfileBundleLinuxAssets's name depends on target platforms", () async {
186+
testWithoutContext("ProfileBundleLinuxAssets' name depends on target platforms", () async {
187187
expect(const ProfileBundleLinuxAssets(TargetPlatform.linux_x64).name, 'profile_bundle_linux-x64_assets');
188188
expect(const ProfileBundleLinuxAssets(TargetPlatform.linux_arm64).name, 'profile_bundle_linux-arm64_assets');
189189
});
@@ -222,7 +222,7 @@ void main() {
222222
ProcessManager: () => FakeProcessManager.any(),
223223
});
224224

225-
testWithoutContext("ReleaseBundleLinuxAssets's name depends on target platforms", () async {
225+
testWithoutContext("ReleaseBundleLinuxAssets' name depends on target platforms", () async {
226226
expect(const ReleaseBundleLinuxAssets(TargetPlatform.linux_x64).name, 'release_bundle_linux-x64_assets');
227227
expect(const ReleaseBundleLinuxAssets(TargetPlatform.linux_arm64).name, 'release_bundle_linux-arm64_assets');
228228
});

0 commit comments

Comments
 (0)