From eaf293c9cb394fc7ae887936d0425e4026452973 Mon Sep 17 00:00:00 2001 From: "aedampir@gmail.com" Date: Thu, 24 Mar 2016 00:21:37 +0700 Subject: [PATCH] Some cosmetic changes in OrganizationMembersClientTests. --- .../Clients/OrganizationMembersClientTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Octokit.Tests.Integration/Clients/OrganizationMembersClientTests.cs b/Octokit.Tests.Integration/Clients/OrganizationMembersClientTests.cs index adebb962..f495c2b3 100644 --- a/Octokit.Tests.Integration/Clients/OrganizationMembersClientTests.cs +++ b/Octokit.Tests.Integration/Clients/OrganizationMembersClientTests.cs @@ -42,7 +42,7 @@ namespace Octokit.Tests.Integration.Clients // There shouldnt be any members that are in both groups if the role filter works correctly var membersInBoth = adminMembers.Select(a => a.Id).Intersect(normalMembers.Select(n => n.Id)); - Assert.True(!membersInBoth.Any()); + Assert.NotEmpty(membersInBoth); } [IntegrationTest(Skip = "TwoFactor filter can't be used unless the requester is an organization owner")]