Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
BorisNikolic committed Dec 4, 2024
1 parent e9bc1f6 commit f8a080e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Tests/Primer/ApplePay/ApplePayPresentationManagerTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ final class ApplePayPresentationManagerTests: XCTestCase {
let billingFields3 = contactFields3.mappedBillingContactFields
let shippingFields3 = contactFields3.mappedShippingContactFields

XCTAssertEqual(billingFields3, [.name, .postalAddress])
XCTAssertEqual(billingFields3, [.postalAddress])
XCTAssertEqual(shippingFields3, [])
}

Expand Down Expand Up @@ -213,7 +213,7 @@ final class ApplePayPresentationManagerTests: XCTestCase {
let billingFields = contactFields.mappedBillingContactFields
let shippingFields = contactFields.mappedShippingContactFields

XCTAssertEqual(billingFields, [.name, .postalAddress])
XCTAssertEqual(billingFields, [.postalAddress])
XCTAssertEqual(shippingFields, [])
}

Expand Down

0 comments on commit f8a080e

Please sign in to comment.