Skip to content

Commit c1fab0b

Browse files
lukeredpathstephencelismbrandonw
authored
fix: Add dependency on PerceptionCore (#301)
* Update [email protected] Add missing transient dependencies * wip * Change Xcode version to 16.4 in CI workflow Updated Xcode version in CI workflow from 16.2 to 16.4. * wip * wip * wip * Fix CI. --------- Co-authored-by: Stephen Celis <[email protected]> Co-authored-by: Brandon Williams <[email protected]>
1 parent 819dea2 commit c1fab0b

File tree

5 files changed

+32
-30
lines changed

5 files changed

+32
-30
lines changed

Package.resolved

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ let package = Package(
4747
.product(name: "IssueReporting", package: "xctest-dynamic-overlay"),
4848
.product(name: "OrderedCollections", package: "swift-collections"),
4949
.product(name: "Perception", package: "swift-perception"),
50+
.product(name: "PerceptionCore", package: "swift-perception"),
5051
]
5152
),
5253
.testTarget(

[email protected]

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ let package = Package(
4747
.product(name: "IssueReporting", package: "xctest-dynamic-overlay"),
4848
.product(name: "OrderedCollections", package: "swift-collections"),
4949
.product(name: "Perception", package: "swift-perception"),
50+
.product(name: "PerceptionCore", package: "swift-perception"),
5051
]
5152
),
5253
.testTarget(

SwiftNavigation.xcworkspace/xcshareddata/swiftpm/Package.resolved

Lines changed: 24 additions & 24 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Tests/SwiftNavigationTests/ButtonStateTests.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
await Task.yield()
1616
}
1717
} matching: { issue in
18-
issue.description == """
19-
Expectation failed: An animated action was performed asynchronously: …
18+
issue.description.hasSuffix("""
19+
An animated action was performed asynchronously: …
2020
2121
Action:
2222
ButtonStateAction.send(
@@ -26,7 +26,7 @@
2626
2727
Asynchronous actions cannot be animated. Evaluate this action in a synchronous closure, \
2828
or use 'SwiftUI.withAnimation' explicitly.
29-
"""
29+
""")
3030
}
3131
}
3232
}

0 commit comments

Comments
 (0)