Skip to content

Commit eeb25a8

Browse files
committed
Correct reference to wrong OS in XCFramework tests
Noticed this while working on some other tests; probably doesn't matter but may be confusing so correct it.
1 parent ed4cce9 commit eeb25a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/SWBBuildSystemTests/XCFrameworkBuildOperationTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1003,7 +1003,7 @@ fileprivate struct XCFrameworkBuildOperationTests: CoreBasedTests {
10031003
version: Version(1, 0),
10041004
libraries: [
10051005
XCFramework.Library(libraryIdentifier: "arm64-apple-iphoneos\(infoLookup.loadSDK(.iOS).defaultDeploymentTarget)", supportedPlatform: "ios", supportedArchitectures: ["arm64", "arm64e"], platformVariant: nil, libraryPath: Path("Support.framework"), binaryPath: Path("Support.framework/Support"), headersPath: nil),
1006-
XCFramework.Library(libraryIdentifier: "arm64-apple-iphoneos\(infoLookup.loadSDK(.watchOS).defaultDeploymentTarget)", supportedPlatform: "watchos", supportedArchitectures: ["arm64", "arm64_32"], platformVariant: nil, libraryPath: Path("Support.framework"), binaryPath: Path("Support.framework/Support"), headersPath: nil),
1006+
XCFramework.Library(libraryIdentifier: "arm64-apple-watchos\(infoLookup.loadSDK(.watchOS).defaultDeploymentTarget)", supportedPlatform: "watchos", supportedArchitectures: ["arm64", "arm64_32"], platformVariant: nil, libraryPath: Path("Support.framework"), binaryPath: Path("Support.framework/Support"), headersPath: nil),
10071007
])
10081008

10091009
try fs.createDirectory(supportXCFrameworkPath, recursive: true)

0 commit comments

Comments
 (0)