From 3faa9f82d729a491b7958e7395509c86a5a4e66f Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Sat, 12 Dec 2015 11:11:39 +1030 Subject: [PATCH] don't depend on an account name --- Octokit.Tests.Integration/Helper.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Octokit.Tests.Integration/Helper.cs b/Octokit.Tests.Integration/Helper.cs index 17815e34..42567801 100644 --- a/Octokit.Tests.Integration/Helper.cs +++ b/Octokit.Tests.Integration/Helper.cs @@ -159,7 +159,7 @@ namespace Octokit.Tests.Integration { return new GitHubClient(new ProductHeaderValue("OctokitTests")) { - Credentials = new Credentials(Credentials.Login, "bad-password") + Credentials = new Credentials(Guid.NewGuid().ToString(), "bad-password") }; } }