From c8021215a1f4add756a3a1f3c52d985950e9e0fe Mon Sep 17 00:00:00 2001 From: Liam Neville Date: Wed, 20 Sep 2023 15:56:06 -0400 Subject: [PATCH] update int tests --- Octokit.Tests.Integration/Clients/GitHubAppsClientTests.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Octokit.Tests.Integration/Clients/GitHubAppsClientTests.cs b/Octokit.Tests.Integration/Clients/GitHubAppsClientTests.cs index e5f97e77ef..a445e3c783 100644 --- a/Octokit.Tests.Integration/Clients/GitHubAppsClientTests.cs +++ b/Octokit.Tests.Integration/Clients/GitHubAppsClientTests.cs @@ -74,6 +74,8 @@ public async Task GetsAllInstallations() Assert.Equal(InstallationReadWritePermissionLevel.Read, installation.Permissions.Metadata); Assert.False(string.IsNullOrEmpty(installation.HtmlUrl)); Assert.NotEqual(0, installation.TargetId); + Assert.Null(installation.SuspendedBy); + Assert.Null(installation.SuspendedAt); } } }