[#804] Update FFI dependency (#805)

- SDK version updated so the FFI is updated as well
- log levels changed so uni tests fixed
This commit is contained in:
Lukas Korba 2023-08-23 17:06:34 +02:00 committed by GitHub
parent 59e0a68da5
commit faec526e15
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 7 deletions

View File

@ -62,7 +62,7 @@ let package = Package(
.package(url: "https://github.com/pointfreeco/swift-url-routing", from: "0.5.0"),
.package(url: "https://github.com/SwiftGen/SwiftGenPlugin", from: "6.6.0"),
.package(url: "https://github.com/zcash-hackworks/MnemonicSwift", from: "2.2.4"),
.package(url: "https://github.com/zcash/ZcashLightClientKit", revision: "4d95f2cb9df23be534540b569597df8bd16717a6"),
.package(url: "https://github.com/zcash/ZcashLightClientKit", revision: "d446c6d3369ed7c5a2e2e0d23e772968dd6a32b4"),
.package(url: "https://github.com/firebase/firebase-ios-sdk", from: "10.11.0")
],
targets: [

View File

@ -320,7 +320,7 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/zcash-hackworks/zcash-light-client-ffi",
"state" : {
"revision" : "7718b764027c2a4b9f654ed0b712b87ce881348f"
"revision" : "c3b5f4ebee758b619aa81e844d791aa1fd35b918"
}
},
{
@ -328,7 +328,7 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/zcash/ZcashLightClientKit",
"state" : {
"revision" : "4d95f2cb9df23be534540b569597df8bd16717a6"
"revision" : "d446c6d3369ed7c5a2e2e0d23e772968dd6a32b4"
}
}
],

View File

@ -161,7 +161,7 @@ class LoggerTests: XCTestCase {
guard let logs else { return }
XCTAssertEqual(logs.count, 4)
XCTAssertEqual(logs.count, 1)
}
func testOSLogger_WarningLevel_OtherLogs() throws {
@ -179,7 +179,7 @@ class LoggerTests: XCTestCase {
guard let logs else { return }
XCTAssertEqual(logs.count, 3)
XCTAssertEqual(logs.count, 2)
}
func testOSLogger_EventLevel_OtherLogs() throws {
@ -197,7 +197,7 @@ class LoggerTests: XCTestCase {
guard let logs else { return }
XCTAssertEqual(logs.count, 2)
XCTAssertEqual(logs.count, 3)
}
func testOSLogger_InfoLevel_OtherLogs() throws {
@ -215,7 +215,7 @@ class LoggerTests: XCTestCase {
guard let logs else { return }
XCTAssertEqual(logs.count, 1)
XCTAssertEqual(logs.count, 4)
}
func testWalletLogger() throws {