bugfix for PR commits having different shape to regular commits

This commit is contained in:
Brendan Forster
2014-02-18 20:20:37 +11:00
parent 768461312d
commit 1231b794b1
11 changed files with 33 additions and 11 deletions
@@ -183,7 +183,7 @@ public class PullRequestsClientTests : IDisposable
var result = await _fixture.Commits(Helper.UserName, _repository.Name, pullRequest.Number);
Assert.Equal(1, result.Count);
Assert.Equal("this is the commit to merge into the pull request", result[0].Message);
Assert.Equal("this is the commit to merge into the pull request", result[0].Commit.Message);
}
async Task CreateTheWorld()