[#384] Update to ComposableArchitecture 0.38.2 (#385)

- TCA updated
- tests fixed
This commit is contained in:
Lukas Korba 2022-07-05 13:16:42 +02:00 committed by GitHub
parent d45f39efd0
commit bf6e9bfbb0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 4 deletions

View File

@ -1894,7 +1894,7 @@
repositoryURL = "https://github.com/pointfreeco/swift-composable-architecture";
requirement = {
kind = exactVersion;
version = 0.37.0;
version = 0.38.2;
};
};
9E2AC0FD27D8EC120042AA47 /* XCRemoteSwiftPackageReference "MnemonicSwift" */ = {

View File

@ -59,8 +59,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/pointfreeco/swift-composable-architecture",
"state" : {
"revision" : "cfcf8b43adc7d521a8ed26992d7ad8b979d386d2",
"version" : "0.37.0"
"revision" : "d0ba4b87358a11d5be26d125ef3d3d492a07d8cf",
"version" : "0.38.2"
}
},
{

View File

@ -30,7 +30,9 @@ class WalletEventsTests: XCTestCase {
environment: testEnvironment
)
store.send(.onAppear)
store.send(.onAppear) { state in
state.requiredTransactionConfirmations = 10
}
store.receive(.synchronizerStateChanged(.unknown))