Skip to content

Commit 5da108a

Browse files
authored
fix mirrors functional test (#6437)
motivation: test coverage change: update fixture to not force package name which is deprecated when using URLs rdar://107970938
1 parent 7a8a9e1 commit 5da108a

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

Fixtures/DependencyResolution/External/Mirror/App/Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import PackageDescription
55
let package = Package(
66
name: "App",
77
dependencies: [
8-
.package(name: "Foo", url: "../Foo", .branch("main")),
9-
.package(name: "Bar", url: "../Bar", .branch("main")),
8+
.package(url: "../Foo", .branch("main")),
9+
.package(url: "../Bar", .branch("main")),
1010
],
1111
targets: [
1212
.target(name: "App", dependencies: [

Tests/FunctionalTests/DependencyResolutionTests.swift

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,6 @@ class DependencyResolutionTests: XCTestCase {
7878
}
7979

8080
func testMirrors() throws {
81-
try XCTSkipIf(true, "test is broken and needs investigation rdar://107970938")
82-
8381
try fixture(name: "DependencyResolution/External/Mirror") { fixturePath in
8482
let prefix = try resolveSymlinks(fixturePath)
8583
let appPath = prefix.appending("App")

0 commit comments

Comments
 (0)