Skip to content

Commit

Permalink
Fix failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
Viincenttt committed Jan 17, 2025
1 parent 84f920f commit df070fb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/Mollie.Tests.Integration/Api/ProfileTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ public async Task GetCurrentProfileAsync_ReturnsCurrentProfile() {

// Then: Make sure we get a valid response
profileResponse.ShouldNotBeNull();
profileResponse.Id.ShouldBeNullOrEmpty();
profileResponse.Email.ShouldBeNullOrEmpty();
profileResponse.Status.ShouldBeNullOrEmpty();
profileResponse.Id.ShouldNotBeNullOrEmpty();
profileResponse.Email.ShouldNotBeNullOrEmpty();
profileResponse.Status.ShouldNotBeNullOrEmpty();
}

[DefaultRetryFact]
Expand Down

0 comments on commit df070fb

Please sign in to comment.