Skip to content

Commit

Permalink
fix: fix a test assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
HamedSY committed Aug 5, 2024
1 parent a4043cd commit 8ff3f81
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,6 @@ public async Task MergePullRequest_ShouldMergePullRequest_WhenInputsAreProvidedP
_giteaCollectionFixture.CancellationToken);
getPullRequestListResponse.StatusCode.Should().Be(HttpStatusCode.OK);
getPullRequestListResponse.Content.Should().NotBeNull();
getPullRequestListResponse.Content!.First().Merged.Should().BeTrue();
getPullRequestListResponse.Content!.First(x => x.Title.Equals(title)).Merged.Should().BeTrue();
}
}

0 comments on commit 8ff3f81

Please sign in to comment.