Skip to content

Commit

Permalink
Update risk tests
Browse files Browse the repository at this point in the history
  • Loading branch information
armando-rodriguez-cko committed Jul 28, 2023
1 parent 56d08c7 commit 87af5ce
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ private async Task ShouldMakeCard3dsPayment_N3d()
paymentResponse.Approved.ShouldBe(true);
paymentResponse.AuthCode.ShouldNotBeNullOrEmpty();
paymentResponse.Currency.ShouldBe(Currency.USD);
paymentResponse.ThreeDs.ShouldBeNull();
paymentResponse.ThreeDs.ShouldNotBeNull();
//Source
paymentResponse.Source.ShouldBeAssignableTo(typeof(CardResponseSource));
var cardSourceResponse = (CardResponseSource)paymentResponse.Source;
Expand Down
4 changes: 2 additions & 2 deletions test/CheckoutSdkTest/Risk/Previous/RiskIntegrationTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public RiskIntegrationTest() : base(PlatformType.Previous)
{
}

[Fact]
[Fact(Skip = "unavailable")]
private async Task ShouldRiskCardSource()
{
var cardSourcePrism = new CardSourcePrism()
Expand Down Expand Up @@ -45,7 +45,7 @@ private async Task ShouldRiskCardSource()
await TestPreCaptureAssessmentRequest(cardSourcePrism);
}

[Fact]
[Fact(Skip = "unavailable")]
private async Task ShouldRiskCustomerSource()
{
var customerRequest = new CustomerRequest()
Expand Down
4 changes: 2 additions & 2 deletions test/CheckoutSdkTest/Risk/RiskIntegrationTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public RiskIntegrationTest() : base(PlatformType.Default)
{
}

[Fact]
[Fact(Skip = "unavailable")]
private async Task ShouldRiskCardSource()
{
var cardSourcePrism = new CardSourcePrism()
Expand Down Expand Up @@ -45,7 +45,7 @@ private async Task ShouldRiskCardSource()
await TestPreCaptureAssessmentRequest(cardSourcePrism);
}

[Fact]
[Fact(Skip = "unavailable")]
private async Task ShouldRiskCustomerSource()
{
var customerRequest = new CustomerRequest()
Expand Down

0 comments on commit 87af5ce

Please sign in to comment.