no longer throws when creator is a random account

This commit is contained in:
Brendan Forster
2014-12-10 19:59:25 +10:30
parent 87c6958a85
commit a73272900a
@@ -246,10 +246,6 @@ public class IssuesClientTests : IDisposable
{
var owner = _repository.Owner.Login;
await AssertEx.Throws<ApiValidationException>(
async () => await _issuesClient.GetForRepository(owner, _repository.Name,
new RepositoryIssueRequest { Creator = "some-random-account" }));
await AssertEx.Throws<ApiValidationException>(
async () => await _issuesClient.GetForRepository(owner, _repository.Name,
new RepositoryIssueRequest { Assignee = "some-random-account" }));