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

Commit fd0527d

Browse files
Removing private modifier from methods as well
1 parent ce1af23 commit fd0527d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -551,11 +551,12 @@ public void SetUp()
551551
WriteUserFileContent(DefaultUserStoreContent);
552552
}
553553

554-
private void WriteUsageFileContent(string content)
554+
void WriteUsageFileContent(string content)
555555
{
556556
File.WriteAllText(usageFileName, content);
557557
}
558-
private void WriteUserFileContent(string content)
558+
559+
void WriteUserFileContent(string content)
559560
{
560561
File.WriteAllText(userFileName, content);
561562
}

0 commit comments

Comments
 (0)