Skip to content

Commit

Permalink
Fix broken unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Viincenttt committed Jul 9, 2024
1 parent 1439c2f commit 0fdbf8a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Mollie.Tests.Unit/Client/PaymentClientTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -563,15 +563,15 @@ public async Task CreatePaymentAsync_CreditcardPayment_RequestAndResponseAreConv
Method = PaymentMethod.Ideal,
RedirectUrl = "http://www.mollie.com",
WebhookUrl = "http://www.mollie.com/webhook",
BillingAddress = new AddressObject()
BillingAddress = new PaymentAddressDetails()
{
City = "Amsterdam",
Country = "NL",
PostalCode = "1000AA",
Region = "Noord-Holland",
StreetAndNumber = "Keizersgracht 313"
},
ShippingAddress = new AddressObject()
ShippingAddress = new PaymentAddressDetails()
{
City = "Amsterdam",
Country = "NL",
Expand Down

0 comments on commit 0fdbf8a

Please sign in to comment.