Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit 5bfe0df

Browse files
Removing private modifiers
1 parent 7b369d1 commit 5bfe0df

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

test/UnitTests/GitHub.VisualStudio/Services/MetricsTests.cs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -425,10 +425,10 @@ static IUsageService CreateUsageService(
425425

426426
public class UsageServiceTests : TestBaseClass
427427
{
428-
private static readonly Guid UserGuid = Guid.NewGuid();
429-
private static readonly string DefaultUserStoreContent = @"{""UserGuid"":""" + UserGuid + @"""}";
428+
static readonly Guid UserGuid = Guid.NewGuid();
429+
static readonly string DefaultUserStoreContent = @"{""UserGuid"":""" + UserGuid + @"""}";
430430

431-
private static readonly string DefaultUsageContent =
431+
static readonly string DefaultUsageContent =
432432
@"{
433433
""LastUpdated"": ""2017-02-24T18:18:52.4298622Z"",
434434
""Model"": {
@@ -473,7 +473,7 @@ public class UsageServiceTests : TestBaseClass
473473
}
474474
";
475475

476-
private static readonly string LegacyUsageContent =
476+
static readonly string LegacyUsageContent =
477477
@"{
478478
""LastUpdated"": ""2017-02-24T12:37:09.4771538Z"",
479479
""Model"": {
@@ -518,10 +518,10 @@ public class UsageServiceTests : TestBaseClass
518518
}
519519
";
520520

521-
private string usageFileName;
522-
private string userFileName;
523-
private string localApplicationDataPath;
524-
private IEnvironment environment;
521+
string usageFileName;
522+
string userFileName;
523+
string localApplicationDataPath;
524+
IEnvironment environment;
525525

526526
[SetUp]
527527
public void SetUp()

0 commit comments

Comments
 (0)