mirror of
https://github.com/pointfreeco/swift-composable-architecture.git
synced 2025-12-24 12:14:25 +01:00
Fix some warnings (#3279)
We have a few warnings, mostly in the test suite, that have cropped up with deprecations and Xcode 16 strict concurrency, so let's address them.
This commit is contained in:
@@ -218,12 +218,14 @@ public struct Shared<Value> {
|
||||
}
|
||||
try updateValueToExpectedResult(&snapshot)
|
||||
self.snapshot = snapshot
|
||||
// TODO: Finesse error more than `XCTAssertNoDifference`
|
||||
XCTAssertNoDifference(
|
||||
// TODO: Finesse error more than `expectNoDifference`
|
||||
expectNoDifference(
|
||||
self.currentValue,
|
||||
self.snapshot,
|
||||
file: filePath,
|
||||
line: line
|
||||
fileID: fileID,
|
||||
filePath: filePath,
|
||||
line: line,
|
||||
column: column
|
||||
)
|
||||
self.snapshot = nil
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user