This commit is contained in:
Brendan Forster
2014-02-18 15:39:06 +11:00
parent af613a4f3f
commit e93a24ea5c
3 changed files with 3 additions and 6 deletions
@@ -1,5 +1,4 @@
using System;
using System.Linq;
using System.Net.Http.Headers;
using System.Threading.Tasks;
using Octokit;
@@ -29,7 +28,7 @@ public class PullRequestsClientTests : IDisposable
[IntegrationTest]
public async Task CanRetrieveOnePullRequest()
{
// create baseline commit for master branch
// create new commit for master branch
var baselineBlob = new NewBlob
{
Content = "Hello World!",
@@ -55,7 +54,7 @@ public class PullRequestsClientTests : IDisposable
// update master
await _client.GitDatabase.Reference.Update(Helper.UserName, _repository.Name, "heads/master", new ReferenceUpdate(baselineCommit.Sha, true));
// create baseline commit for feature branch
// create new commit for feature branch
var blob = new NewBlob
{
Content = "I am overwriting this blob with something new",