Skip to content

Commit

Permalink
[TIDY]
Browse files Browse the repository at this point in the history
  • Loading branch information
DarthMike committed Jan 9, 2024
1 parent 49de76f commit c553221
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions web3sTests/Client/EthereumClientTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ class EthereumClientTests: XCTestCase {
fromBlock: .Earliest,
toBlock: .Latest,
eventTypes: [ERC20Events.Transfer.self])
XCTAssertEqual(eventsResult?.events.count, 5)
XCTAssertEqual(eventsResult?.events.count, 5) // MIQU 4
XCTAssertEqual(eventsResult?.logs.count, 4)
} catch {
XCTFail("Expected events but failed \(error).")
Expand All @@ -257,7 +257,7 @@ class EthereumClientTests: XCTestCase {
fromBlock: .Earliest,
toBlock: .Latest,
eventTypes: [ERC20Events.Transfer.self, TransferMatchingSignatureEvent.self])
XCTAssertEqual(eventsResult?.events.count, 10)
XCTAssertEqual(eventsResult?.events.count, 10) // MIQU 8
XCTAssertEqual(eventsResult?.logs.count, 8)
} catch {
XCTFail("Expected events but failed \(error).")
Expand All @@ -277,7 +277,7 @@ class EthereumClientTests: XCTestCase {
toBlock: .Latest,
matching: filters)
XCTAssertEqual(eventsResult?.events.count, 2)
XCTAssertEqual(eventsResult?.logs.count, 7)
XCTAssertEqual(eventsResult?.logs.count, 7) // MIQU 7
} catch {
XCTFail("Expected events but failed \(error).")
}
Expand Down

0 comments on commit c553221

Please sign in to comment.