Skip to content

Commit a1f4508

Browse files
committed
Fix incorrect XML comment comments
1 parent 18ccbbd commit a1f4508

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/GitReleaseManager.IntegrationTests/GitHubProviderIntegrationTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,14 +105,14 @@ public async Task Should_Get_Commits_Count()
105105
[Test]
106106
public async Task GetLinkedIssues()
107107
{
108-
// Assert that issue 43 is linked to pull requests 107 and 108
108+
// Assert that pull request 43 is linked to issues 107 and 108
109109
var result1 = await _gitHubProvider.GetLinkedIssuesAsync("jericho", "_testing", new Issue() { PublicNumber = 43 }).ConfigureAwait(false);
110110
Assert.That(result1, Is.Not.Null);
111111
Assert.That(result1.Count(), Is.EqualTo(2));
112112
Assert.That(result1.Count(r => r.PublicNumber == 107), Is.EqualTo(1));
113113
Assert.That(result1.Count(r => r.PublicNumber == 108), Is.EqualTo(1));
114114

115-
// Assert that pull request 108 is linked to issue 43
115+
// Assert that issue 108 is linked to pull request 43
116116
var result2 = await _gitHubProvider.GetLinkedIssuesAsync("jericho", "_testing", new Issue() { PublicNumber = 108 }).ConfigureAwait(false);
117117
Assert.That(result2, Is.Not.Null);
118118
Assert.That(result2.Count(), Is.EqualTo(1));

0 commit comments

Comments
 (0)