Skip to content
This repository has been archived by the owner on Nov 10, 2022. It is now read-only.

Commit

Permalink
Merge pull request #36 from TheEadie/fix-sonar-debt
Browse files Browse the repository at this point in the history
Make test objects sealed
  • Loading branch information
TheEadie authored Feb 9, 2018
2 parents 0907f87 + 66580d9 commit a757bb0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/LazyStorage.Tests/PersistenceTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

namespace LazyStorage.Tests
{
public class PersistenceTests : IDisposable
public sealed class PersistenceTests : IDisposable
{
public static IEnumerable<object[]> StorageTypes => new[]
{
Expand Down
2 changes: 1 addition & 1 deletion src/LazyStorage.Tests/TestObject.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace LazyStorage.Tests
{
public class TestObject : IStorable<TestObject>
public sealed class TestObject : IStorable<TestObject>
{
public int Id { get; set; }
public string Name { get; set; }
Expand Down

0 comments on commit a757bb0

Please sign in to comment.