Skip to content

Commit fdd92d0

Browse files
committed
Fix build warning about obsolete use of await.
rdar://159492261
1 parent 2986e88 commit fdd92d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/SWBAndroidPlatformTests/SWBAndroidPlatformTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ fileprivate struct AndroidBuildOperationTests: CoreBasedTests {
9595
),
9696
])
9797
let core = try await getCore()
98-
let androidExtension = try await #require(core.pluginManager.extensions(of: SDKRegistryExtensionPoint.self).compactMap { $0 as? AndroidSDKRegistryExtension }.only)
98+
let androidExtension = try #require(core.pluginManager.extensions(of: SDKRegistryExtensionPoint.self).compactMap { $0 as? AndroidSDKRegistryExtension }.only)
9999
let (_, androidNdk) = try #require(await androidExtension.plugin.effectiveInstallation(host: core.hostOperatingSystem))
100100
if androidNdk.version < Version(27) && arch == "riscv64" {
101101
return // riscv64 support was introduced in NDK r27

0 commit comments

Comments
 (0)