Skip to content

Commit

Permalink
fix codestyle
Browse files Browse the repository at this point in the history
  • Loading branch information
fakefeik committed Feb 20, 2024
1 parent 1e8732d commit 5af4bd8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions NUnit.Middlewares.Tests/TestWithRetriesHasItsOwnSetup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@ public class DisposableCounter : IDisposable
{
public int InvocationsCount { get; set; }

private readonly object sync = new();
private bool disposed;

public void Dispose()
{
if (!disposed)
Expand All @@ -30,6 +27,9 @@ public void Dispose()

throw new InvalidOperationException("Already disposed");
}

private readonly object sync = new();
private bool disposed;
}

[Parallelizable(ParallelScope.Children)]
Expand Down

0 comments on commit 5af4bd8

Please sign in to comment.