mirror of
https://github.com/tgstation/tgstation-server.git
synced 2026-08-21 20:17:22 +01:00
Fix failing tests
This commit is contained in:
@@ -40,6 +40,6 @@ namespace Tgstation.Server.Host.Components.Interop.Topic
|
||||
/// <summary>
|
||||
/// The number of connected clients to the game. Added in Interop 5.10.0.
|
||||
/// </summary>
|
||||
public int? ClientCount { get; }
|
||||
public int? ClientCount { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
@@ -53,7 +53,9 @@ namespace Tgstation.Server.Host.Utils.GitHub
|
||||
/// <inheritdoc />
|
||||
public async ValueTask<IAuthenticatedGitHubService> CreateService(string accessToken, CancellationToken cancellationToken)
|
||||
=> CreateServiceImpl(
|
||||
await gitHubClientFactory.CreateClient(accessToken, cancellationToken));
|
||||
await gitHubClientFactory.CreateClient(
|
||||
accessToken ?? throw new ArgumentNullException(nameof(accessToken)),
|
||||
cancellationToken));
|
||||
|
||||
/// <inheritdoc />
|
||||
public async ValueTask<IAuthenticatedGitHubService?> CreateService(string accessString, RepositoryIdentifier repositoryIdentifier, CancellationToken cancellationToken)
|
||||
|
||||
Reference in New Issue
Block a user