Skip to content

Commit

Permalink
Fix unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
Viincenttt committed May 14, 2024
1 parent 691623f commit 58fa106
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Mollie.Tests.Unit/Client/ProfileClientTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ public async Task EnablePaymentMethodAsync_ForCurrentProfileWithMissingPaymentMe
var exception = await Assert.ThrowsAsync<ArgumentException>(() => profileClient.EnablePaymentMethodAsync(string.Empty));

// Assert
exception.Message.Should().Be($"Required URL argument '{nameof(PaymentMethod.Ideal)}' is null or empty");
exception.Message.Should().Be($"Required URL argument 'paymentMethod' is null or empty");
}

[Fact]
Expand Down

0 comments on commit 58fa106

Please sign in to comment.