mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-01 02:18:44 +00:00
Added readonly to fields that are never modified (#2759)
Co-authored-by: Lehonti Ramos <john@doe> Co-authored-by: Keegan Campbell <me@kfcampbell.com>
This commit is contained in:
@@ -9,8 +9,8 @@ namespace Octokit.Tests.Integration.Clients
|
||||
{
|
||||
public class TheGetAllMethod
|
||||
{
|
||||
private IGitHubClient _gitHub;
|
||||
private string _organizationFixture;
|
||||
private readonly IGitHubClient _gitHub;
|
||||
private readonly string _organizationFixture;
|
||||
|
||||
public TheGetAllMethod()
|
||||
{
|
||||
@@ -296,7 +296,7 @@ namespace Octokit.Tests.Integration.Clients
|
||||
|
||||
public class TheGetAllOrganizationMembershipsForCurrentMethod
|
||||
{
|
||||
private IGitHubClient _gitHub;
|
||||
private readonly IGitHubClient _gitHub;
|
||||
|
||||
public TheGetAllOrganizationMembershipsForCurrentMethod()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user