Skip to content

Commit

Permalink
Removed explicit private declarations.
Browse files Browse the repository at this point in the history
  • Loading branch information
merbla committed Jun 14, 2016
1 parent ad6dc3a commit 9d2b472
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion Build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ if($LASTEXITCODE -ne 0) { exit 2 }

Pop-Location
Push-Location test/Serilog.PerformanceTests


# Currently no running Perf Tests in CI.
& dotnet build -c Release
if($LASTEXITCODE -ne 0) { exit 2 }

Expand Down
2 changes: 1 addition & 1 deletion test/Serilog.PerformanceTests/ForContextTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ namespace Serilog.PerformanceTests
/// </summary>
public class ForContextTests
{
private ILogger log;
ILogger log;

[Setup]
public void Setup()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ namespace Serilog.PerformanceTests
{
public class FromLogContextPushPropertyTests
{
private ILogger log;
ILogger log;

[Setup]
public void Setup()
Expand Down
4 changes: 2 additions & 2 deletions test/Serilog.PerformanceTests/MinimumLevelTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ namespace Serilog.PerformanceTests
{
public class MinimumLevelTests
{
private ILogger log;
private LoggingLevelSwitch levelSwitch;
ILogger log;
LoggingLevelSwitch levelSwitch;

[Setup]
public void Setup()
Expand Down

0 comments on commit 9d2b472

Please sign in to comment.