Skip to content

Commit

Permalink
fix(GiniBankSDK): Fix test
Browse files Browse the repository at this point in the history
PP-749
  • Loading branch information
ValentinaIancu-Gini committed Feb 20, 2025
1 parent 24c8204 commit 8329e0e
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,10 @@ class TransactionDocsDataCoordinatorPublicProtocolTests: XCTestCase {
"Expected presentingViewController to be set and retrieved correctly")
}

func testTransactionDocIDsShouldReturnCorrectDocumentIDs() {
func testTransactionDocsShouldReturnCorrectDocumentIDs() {
let docIDs = mockDocs.map { $0.documentId }
XCTAssertEqual(coordinator.transactionDocIDs,
let transactionDocIDs = coordinator.transactionDocs.map { $0.documentId }
XCTAssertEqual(transactionDocIDs,
docIDs,
"Expected transactionDocIDs to match the IDs of the mock documents")
}
Expand Down

0 comments on commit 8329e0e

Please sign in to comment.